/* eslint-disable @wordpress/i18n-ellipsis */ const { useBlockProps } = wp.blockEditor const { __ } = wp.i18n const NAME = '' export default ({ attributes }) => { const blockProps = useBlockProps.save() return (
{__('The events could not be loaded!', '')}
{__('The group could not be found!', '')}
) }