import { FormControl, FormControlLabel, FormLabel, Grid, Radio, RadioGroup, TextField } from "@mui/material"; import React from "react"; interface FormValues { hobbies: string; educationLevel: string; excercise: string; excerciseExplanation: string; tobacco: string; tobaccoExplanation: string; alcohol: string; alcoholExplanation: string; healthyDiet: string; healthyDietExplanation: string; sleep: string; sleepExplanation: string; workSchool: string; workSchoolExplanation: string; familyLife: string; familyLifeExplanation: string; drugs: string; drugsExplanation:string; } export default function RecreationalHobbiesSection7(){ return( <> Recreational Activities/Hobbies:

Your education level: } label="High School" /> } label="Some college" /> } label="College Graduate" /> } label="Post college" /> } label="Other" /> Do you excercise? } label="Yes" /> } label="No" /> Use tobacco? } label="Yes" /> } label="No" /> Consume alcohol? } label="Yes" /> } label="No" /> Have a healthy diet? } label="Yes" /> } label="No" /> Get adequate sleep? } label="Yes" /> } label="No" /> Is Work/School stressful to you? } label="Yes" /> } label="No" /> Family life stressful to you? } label="Yes" /> } label="No" /> Use recreational drugs? } label="Yes" /> } label="No" />
) }