import { TreeSelect } from '@wordpress/components'; import { useState } from 'react'; const TreeSelectExample = () => { const [ selection, setSelection ] = useState( '' ); return ( ); }; export default TreeSelectExample;