7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
import { StationDetailPage } from "@/components/weather/station-detail-page";
|
|
|
|
export default async function StationPage({ params }: { params: Promise<{ id: string }> }) {
|
|
const { id } = await params;
|
|
return <StationDetailPage id={id} />;
|
|
}
|