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