BugFix: restored location forms
This commit is contained in:
11
app/[locale]/location/[id]/add/page.tsx
Normal file
11
app/[locale]/location/[id]/add/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { parseYearMonth } from '@/app/lib/format';
|
||||
import LocationAddPage from './LocationAddPage';
|
||||
import { Main } from '@/app/ui/Main';
|
||||
|
||||
export default async function Page({ params:{ id } }: { params: { id:string } }) {
|
||||
return (
|
||||
<Main>
|
||||
<LocationAddPage yearMonth={ parseYearMonth(id) } />
|
||||
</Main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user