import { Button, Checkbox, FormControl, FormControlLabel, FormGroup, FormLabel, Grid, Paper, Radio, RadioGroup, TextField } from '@mui/material'; import { useFormik } from "formik"; import * as yup from "yup"; import { LocalizationProvider, DatePicker } from '@mui/x-date-pickers'; interface FormValues { maritalStatus: string; numberOfChildren: string; ages: string; occupation: string; hoursPerWeek: number | string; employer: string; businessPhone: string; spouseName: string; spouseEmployer: string; spouseBusinessPhone: string; emergencyContact: string; relationship: string; spousePhone: string; } interface Props { familyDetails: FormValues; } export default function FamilyFormSection({familyDetails}:Props){ return( <> Marital Status } label="Married" /> } label="Single" /> } label="Widowed" /> } label="Seperated" /> } label="Divorced" /> Spouse's Information: Emergency: ) };