implemente bill add
This commit is contained in:
10
app/bill/[id]/add/page.tsx
Normal file
10
app/bill/[id]/add/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { BillEditForm } from '@/app/ui/BillEditForm';
|
||||
|
||||
export default async function Page({ params:{ id:locationID } }: { params: { id:string } }) {
|
||||
|
||||
return (
|
||||
<main>
|
||||
<BillEditForm locationID={locationID} />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user