'use client'; import { useState } from "react"; // Tabs import TabsHead from "./tabsHead"; import Turns from "./tabsHead/turns"; import SpecialDays from "./tabsHead/specialDays"; import WorkingDays from "./tabsHead/workingDays"; import OfficeInformation from "./tabsHead/officeInformation"; import GeneralInformation from "./tabsHead/generalInformation"; function AddDoctorPage() { const [value, setValue] = useState(0); const handleChange = (event, newValue) => setValue(newValue); const components = [ , , , , ]; return (

پروفایل من

{components[value]}
) } export default AddDoctorPage