import { Field } from 'formik' const Input = ({ name, placeholder }: InputProps): JSX.Element => { return ( ) } interface InputProps { name: string placeholder?: string } export default Input