import { BaseControl, TextareaControl } from '@wordpress/components'; import { useState } from 'react'; const BaseControlExample = () => { const [ content, setContent ] = useState( '' ); return ( ); }; export default BaseControlExample;