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