"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 (
); } export default AboutDcotor;