https://gutenberg.courses/wcldn @zgordon
// Example of some of the registerBlockType settings
wp.blocks.registerBlockType(
'example-plugin/example-custom-block',
{
title: wp.i18n.__( 'Example Custom Block', 'myplugin' ),
category: 'common',
icon: 'wordpress-alt',
keywords: [ wp.i18n.__( 'Demo' ) ],
edit: () =>
{ wp.i18n.__( 'Edit this.', 'myplugin' ) }
,
save: () =>
{ wp.i18n.__( 'Save this.', 'myplugin' ) }
,
}
);