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