import Pageguide from "@/app/component/Pageguide"; import ItemClinic from "./ItemClinic"; import Pagination from "@/app/component/Pagination"; function List({ selected, clinics }) { const listPage = ["کلینیک ها", selected?.city || ""]; return (
{clinics && clinics.length ? ( ) : (
کلینیکی با این عنوان یافت نشد!
)}
); } export default List;