/** * External dependencies */ import { useBlockProps, InnerBlocks } from '@wordpress/block-editor'; import { useEditorContext } from '@woocommerce/base-context'; /** * Internal dependencies */ import { getMiniCartAllowedBlocks } from '../allowed-blocks'; export const Edit = (): JSX.Element => { const blockProps = useBlockProps(); const { currentView } = useEditorContext(); return ( ); }; export const Save = (): JSX.Element => { return (
); };