import ReactSelect from "react-select"; const Select = ({ field, ...props }) => ( <> field.onChange(option.value)} value={field.value ? props.options.find(option => option.value === field.value) : ''} isDisabled={props.disabled} {...props} /> ); export { Select };