import { FormControl, Grid, TextField } from "@mui/material"; import PropTypes from "prop-types"; import Input from "../common/Input"; import SingleSelect from "../common/SingleSelect" import MultipleSelect from "../common/MultipleSelect"; import TextArea from "../pages/TextArea"; const CheckupSectionMasterForm = ({ values, touched, handleBlur, errors, handleChange, setFieldValue, handleSubmit, }) => { CheckupSectionMasterForm.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 status = ["Active", "Not Active"]; const rules =['Rule1', 'Rule2', 'Rule3']; const Interpret = ["HBA1C", "HBA2C"]; return (
{errors.CheckupSectionName} ) : null } /> {errors.Description} ) : null } />