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