import Link from "next/link"; import AppointmentList from "./appointmentList"; import DetailDoctor from "./detailDoctor"; import Share from "./detailDoctor/Share"; import CustomLoading from "@/app/component/loading/Custom"; function DoctorPage({ doctor, comments, rateAggregate, slug }) { return (

{doctor?.specialties?.map((item, idx) => ( {item.name} {doctor.specialties.length === idx + 1 ? ">" : "|"} ))}

{doctor?.name}

); } export default DoctorPage;