import edit from './edit.js' import save from './save.js' const { registerBlockType } = wp.blocks const { __ } = wp.i18n const NAME = '' registerBlockType(NAME + '/events-list', { title: __('Events List', ''), description: __( 'A list of the upcoming events of the connected Mobilizon instance.', '' ), icon: 'list-view', category: 'widgets', attributes: { eventsCount: { type: 'number', default: 3, }, groupName: { type: 'string', }, }, supports: { html: false, }, edit, save, })