woocommerce-paypal-payments/modules/ppcp-paylater-block/resources/js/paylater-block.js

10 lines
212 B
JavaScript
Raw Normal View History

2023-12-05 21:35:18 +02:00
import { registerBlockType } from '@wordpress/blocks';
import Edit from './edit';
import save from './save';
registerBlockType( 'woocommerce-paypal-payments/paylater-messages', {
edit: Edit,
save,
} );