import React from 'react' import 'bootstrap/dist/css/bootstrap.min.css'; import { Input } from 'reactstrap'; import { useFormikContext } from 'formik'; type FileInputProps = { name:string, label:string, accept:string, onChange:any } function FileInput({name , accept="image/*" ,label , onChange} :FileInputProps) { return (
) } export default FileInput