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"; export function StationGrid({ stations }: { stations: SynopStation[] }) { if (!stations.length) return ; return
{stations.map((station, index) => )}
; }