"use client"; import Chart from "./chart"; import Comment from "@/app/component/comment"; import ModalAnswer from "./modal/ModalAnswer"; function Comments({ doctor, comments, rateAggregate }) { const isUnclaimed = doctor?.owner_status !== "claimed"; const hasComments = comments?.length > 0; const hideRatingBlock = isUnclaimed && !hasComments; return (

نظرات کاربران{" "}

شما هم نظر خود را در مورد این پزشک به اشتراک بگذارید:

{hideRatingBlock ? (

هنوز نظری برای این پزشک ثبت نشده است.

) : ( <> )}
); } export default Comments;