6 lines
215 B
TypeScript
6 lines
215 B
TypeScript
import { LocationEditForm } from '@/app/ui/LocationEditForm';
|
|
|
|
export default async function Page({ params:{ id:yearMonth } }: { params: { id:string } }) {
|
|
|
|
return (<LocationEditForm yearMonth={yearMonth} />);
|
|
} |