| 1 |
/** |
| 2 |
* Import block dependencies |
| 3 |
*/ |
| 4 |
import { registerBlockType } from '@wordpress/blocks'; |
| 5 |
|
| 6 |
import Edit from './edit'; |
| 7 |
import metadata from './block.json'; |
| 8 |
|
| 9 |
import { getBlockAttributes } from './helper.js'; |
| 10 |
|
| 11 |
/** |
| 12 |
* Register the block. |
| 13 |
*/ |
| 14 |
registerBlockType( metadata.name, { |
| 15 |
attributes: getBlockAttributes(), |
| 16 |
edit: Edit |
| 17 |
} ); |
| 18 |
|