first commit

This commit is contained in:
2026-01-26 10:14:10 +03:30
commit 9a995d5109
160 changed files with 34879 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
export function getCitiesOfProvince(province: string): string[] {
if (province === "hamedan") {
return [
"همدان",
"فامنین",
"رزن",
"درگزین",
"اسدآباد",
"بهار",
"تویسرکان",
"نهاوند",
"ملایر",
"کبودر آهنگ",
];
} else if (province === "markazi") {
return [
"اراك",
"خمین",
"دلیجان",
"شازند",
"خنداب",
"کمیجان",
"فراهان",
"تفرش",
"آشتیان",
"ساوه",
"زرندیه",
];
}
return [];
}