import { Field } from 'formik' const Select = ({ name, options }:SelectProps):JSX.Element => { return { options.map(o => ( )) } } interface SelectProps { name: string options: string[] } export default Select