"use client"; import { useState } from "react"; import { Button } from "@mui/material"; import MultilineLoading from "@/app/component/loading/Multiline"; import TextLoading from "@/app/component/loading/Text"; function AboutDcotor({ doctor }) { const [isMore, setIsMore] = useState(false); return (

{doctor?.detail}

{doctor?.expertise?.length > 0 && (

خدمات

)}
); } export default AboutDcotor;