// formik components import { ErrorMessage, Field } from "formik" // ThreeD Garden components import MDBox from "~/components/mui/MDBox" import MDTypography from "~/components/mui/MDTypography" import MDInput from "~/components/mui/MDInput" // Declaring props types for FormField interface Props { label: string name: string [key: string]: any } function FormField({ label, name, ...rest }: Props): JSX.Element { return ( ) } export default FormField