import { Draggable } from '@wordpress/components'; import { useState } from 'react'; const Box = ( props ) => { return (
); }; const DraggableExample = () => { const [ isDragging, setDragging ] = useState( false ); return (Is Dragging? { isDragging ? 'Yes' : 'No' }