import { createElement } from '@wordpress/element' import { TextControl } from '@wordpress/components' const GutenbergText = ({ value, option, onChange }) => ( onChange(value)} {...(option.select_on_focus ? { onFocus: ({ target }) => target.select() } : {})} /> ) export default GutenbergText