8 lines
266 B
TypeScript
8 lines
266 B
TypeScript
"use client";
|
|
|
|
import { LocationEditForm } from '@/app/ui/LocationEditForm';
|
|
import { YearMonth } from '@/app/lib/db-types';
|
|
|
|
export default function LocationAddPage({ yearMonth }: { yearMonth:YearMonth }) {
|
|
return (<LocationEditForm yearMonth={yearMonth} />);
|
|
} |