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