import { Box, Button, Divider, Heading } from "@chakra-ui/react"; import React from "react"; import FormField from "./FormField"; import { OPACITY_ON_LOAD } from "../Layout/animations"; import { ArrowBackIcon } from "@chakra-ui/icons"; const FormInputMain = ({ groupedFields, control, errors, onSubmit, children, onCancle, submitTitle, p, w }) => { return (
); }; export default FormInputMain;