UNPKG

@yvesbou/smartcontract-ui-plugin

Version:

A plugin using the grapesjs framework to display an interface for smart contracts

10 lines (9 loc) 284 B
const myPlugin = (editor) => { var id = 'my-first-block' editor.BlockManager.add(id, { category: 'Basic predefined blocks', label: 'Very Simple block', content: '<div class="my-block">This is a simple block</div>', }); } export default myPlugin;