"use client"; import type { SynopStation } from "@/types/imgw"; import { StationCard } from "@/components/weather/station-card"; import { EmptyState } from "@/components/states/empty-state"; import { SearchX } from "lucide-react"; import { useI18n } from "@/lib/i18n"; export function StationGrid({ stations }: { stations: SynopStation[] }) { const { t } = useI18n(); if (!stations.length) return ; return
{stations.map((station, index) => )}
; }