source: src/app/dashboard/invoice/[id]/edit/page.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 394 bytes
Line 
1// sections
2import { InvoiceEditView } from 'src/sections/invoice/view';
3
4// ----------------------------------------------------------------------
5
6export const metadata = {
7 title: 'Dashboard: Invoice Edit',
8};
9
10type Props = {
11 params: {
12 id: string;
13 };
14};
15
16export default function InvoiceEditPage({ params }: Props) {
17 const { id } = params;
18
19 return <InvoiceEditView id={id} />;
20}
Note: See TracBrowser for help on using the repository browser.