import { FormControl, Grid } from "@mui/material"; import PropTypes from "prop-types"; import Input from "../common/Input"; import SingleSelect from "../common/SingleSelect"; const GroupitemsForm = ({ values, touched, handleBlur, errors, handleChange, // setFieldValue, handleSubmit, }) => { GroupitemsForm.propTypes = { values: PropTypes.object.isRequired, touched: PropTypes.object.isRequired, errors: PropTypes.object.isRequired, handleBlur: PropTypes.func.isRequired, handleChange: PropTypes.func.isRequired, setFieldValue: PropTypes.func.isRequired, handleSubmit: PropTypes.func.isRequired, }; const itemtypeselect=["Capital/non consumeble instruments","other"] const itemnameSelect=["Active","Not Active"] const itemSelect=["Yes","No"] return (