diff --git a/components/Form/Select.tsx b/components/Form/Select.tsx new file mode 100644 index 0000000..b6038bb --- /dev/null +++ b/components/Form/Select.tsx @@ -0,0 +1,18 @@ +import { Field } from 'formik' + +const Select = ({ name, options }:SelectProps):JSX.Element => { + return + { + options.map(o => ( + + )) + } + +} + +interface SelectProps { + name: string + options: string[] +} + +export default Select \ No newline at end of file