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

هیچ دکتری وجود ندارد!

)}
); } export default ListDoctors;