golden hour
/home/godaofbq/hyperbaric-revolution.com/wp-content/plugins/table-builder-block/src/table-builder
⬆️ Go Up
Upload
File/Folder
Size
Actions
block.json
4.82 KB
Del
OK
index.js
406 B
Del
OK
save.js
873 B
Del
OK
style.scss
105 B
Del
OK
Edit: index.js
import { registerBlockType } from '@wordpress/blocks'; import { table } from '@wordpress/icons'; import './style.scss'; /** * Internal dependencies */ import Edit from './edit'; import save from './save'; import metadata from './block.json'; registerBlockType( metadata.name, { /** * @see ./edit.js */ edit: Edit, /** * Block icon */ icon: table, /** * @see ./save.js */ save, } );
Save