'use client'; import { useState } from "react"; import { Button } from "@mui/material" function AboutDcotor({ doctor }) { const [isMore, setIsMore] = useState(false); return (

{doctor.detail}

تخصص ها

) } export default AboutDcotor