import SwitchContent from "./SwitchContent"; import RadioContent from "./RadioContent"; import { filterList } from "@/helper"; import CateSelector from "./CateSelector"; const gender = ["زن", "مرد", "هر دو"]; const degree = ["پزشک عمومی", "پزشک متخصص", "پزشک فوق تخصص", "همه موارد"]; function Form({ filter, changeSpecialty, updateData }) { const { parentList, childrenList } = filterList(filter); return ( <>
); } export default Form;