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
|
---|
2 | import { InvoiceCopyView } from 'src/sections/invoice/view';
|
---|
3 |
|
---|
4 | // ----------------------------------------------------------------------
|
---|
5 |
|
---|
6 | export const metadata = {
|
---|
7 | title: 'Dashboard: Invoice Edit',
|
---|
8 | };
|
---|
9 |
|
---|
10 | type Props = {
|
---|
11 | params: {
|
---|
12 | id: string;
|
---|
13 | };
|
---|
14 | };
|
---|
15 |
|
---|
16 | export default function InvoiceCopyPage({ params }: Props) {
|
---|
17 | const { id } = params;
|
---|
18 |
|
---|
19 | return <InvoiceCopyView id={id} />;
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.