import { CheckboxControl } from '@wordpress/components'; import { useState } from 'react'; const CheckboxControlExample = () => { const [ isChecked, setChecked ] = useState( false ); return ( ); }; export default CheckboxControlExample;