import CalndarD from "@/components/icons/CalndarD"; import { Rating } from "@mui/material"; import Image from "next/image"; import ModalDeleteComment from "./modal"; import CircularLoading from "@/app/component/loading/Circular"; import TextLoading from "@/app/component/loading/Text"; import CustomLoading from "@/app/component/loading/Custom"; import MultilineLoading from "@/app/component/loading/Multiline"; function Comment({ data, loading, idx, length }) { return (
  • profile

    {data.name_doctor}

    تخصص: {data.expertise}

    {data.comment}

    {data.date}

    {length > idx + 1 && ( )}
  • ); } export default Comment;