PluginProbe ʕ •ᴥ•ʔ
ShopPress – Shop Builder for Elementor and WooCommerce / trunk
ShopPress – Shop Builder for Elementor and WooCommerce vtrunk
shop-press / blocks / src / loop / quick-view / index.js
shop-press / blocks / src / loop / quick-view Last commit date
block.json 1 year ago edit.js 2 years ago index.js 2 years ago render.php 2 years ago
index.js
11 lines
1 import { registerBlockType } from '@wordpress/blocks';
2 import { ReactComponent as QuickViewButton } from '../../icons/quick-view-button.svg';
3
4 import Edit from './edit';
5 import metadata from './block.json';
6
7 registerBlockType( metadata.name, {
8 edit: Edit,
9 icon: QuickViewButton,
10 } );
11