import { TextControl } from '@wordpress/components'; import { Action, Description } from '../Elements'; const ControlTextInput = ( { value, description, onChange, placeholder = '', } ) => { return ( { description } ); }; export default ControlTextInput;