import { useState } from '@wordpress/element'; import { BlockEditorProvider } from '@wordpress/block-editor'; import BlockEditor from './BlockEditor'; import './editor.scss'; export default function Editor() { const [ blocks, updateBlocks ] = useState([]); return ( ); }