Block: attributes not saving

I figured it out.
For anyone else this is how i did it.

my save function ends with

return el('div', {},
                el( 'p', {className: 'paragraphs'}, attributes.paragraphs ), 

        )  

and i changed my attribute to this.

paragraphs: {
        type: 'string',
        default: 1,
        source: 'html',
        selector: '.paragraphs',
    },

Then in my style.scss i just have a display:none. As the editor options shouldn’t be displayed on the front end for me.