/** * External dependencies */ import { useBlockProps } from '@wordpress/block-editor'; /** * Internal dependencies */ import Block from './block'; export const Edit = ( { attributes, }: { attributes: { className: string }; } ): JSX.Element => { const { className } = attributes; const blockProps = useBlockProps(); return (
); }; export const Save = (): JSX.Element => { return
; };