diff --git a/components/Form/Input.tsx b/components/Form/Input.tsx new file mode 100644 index 0000000..58c16d0 --- /dev/null +++ b/components/Form/Input.tsx @@ -0,0 +1,13 @@ +import { Field } from 'formik' + +const Input = ({ name, placeholder }:InputProps):JSX.Element => { + return +} + +interface InputProps { + name: string + placeholder?: string +} + +export default Input +