7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
import { LocationEditForm } from '@/app/ui/LocationEditForm';
|
|
|
|
export default async function Page({ params:{ id } }: { params: { id:string } }) {
|
|
|
|
const [year, month] = id.split("-");
|
|
return (<LocationEditForm year={year} month={month} />);
|
|
} |