Wordpress - Shortcodes and Blocks
Given this block registration code snippet, what will be the saved content output in the post?
registerBlockType('myplugin/simple', {
edit: () => {
return wp.element.createElement('p', null, 'Hello Editor');
},
save: () => {
return wp.element.createElement('p', null, 'Hello Saved');
}
});