import MenuS from "@/components/icons/MenuS"; import ItemSpecialties from "./ItemSpecialties"; function List({ specialties = [], cityName, stateName }) { return (

لیست تخصص‌های پزشکی در {cityName || "ایران"}

{specialties.length === 0 ? (
تخصصی با این عنوان یافت نشد!
) : ( )}
); } export default List;