Wordpress - Shortcodes and Blocks
Identify the error in this block registration code:
registerBlockType('myplugin/test', {
edit() {
return <p>Edit Block</p>
},
save() {
return <p>Save Block</p>
}
});