//Example of adding custom blocks. More docs https://grapesjs.com/docs/api/block_manager.html#add
'my-first-block' is the ID of the block
CustomBlock.add('my-first-block', {
label: 'Simple block',
category: 'Basic',
content: '<div class="my-block">This is a simple block</div>',
});