BugFix: restored location forms

This commit is contained in:
2024-02-17 09:46:36 +01:00
parent fcd94408fe
commit cc8c6968f6
8 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { LocationEditForm } from '@/app/ui/LocationEditForm';
import { YearMonth } from '@/app/lib/db-types';
export default async function LocationAddPage({ yearMonth }: { yearMonth:YearMonth }) {
return (<LocationEditForm yearMonth={yearMonth} />);
}