import doctorList from "@/data/doctors.json"; import Pagination from "@/app/component/Pagination"; import ItemDoctor from "@/app/component/ItemDoctor"; function ListDoctors({ doctors, setDoctors }) { return ( <>
{doctors && doctors.length ? ( ) : (

دکتری برای نمایش وجود ندارد.

)}
); } export default ListDoctors;