/** * External dependencies */ import { useBlockProps } from '@wordpress/block-editor'; /** * Internal dependencies */ import Block from './block'; import type { AllReviewsEditorProps } from './types'; export const Edit = ( props: unknown & AllReviewsEditorProps ): JSX.Element => { const blockProps = useBlockProps(); return (
); };