main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 8 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | // @mui
|
---|
| 4 | import Container from '@mui/material/Container';
|
---|
| 5 | // routes
|
---|
| 6 | import { paths } from 'src/routes/paths';
|
---|
| 7 | // components
|
---|
| 8 | import { useSettingsContext } from 'src/components/settings';
|
---|
| 9 | import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
|
---|
| 10 | //
|
---|
| 11 | import InvoiceNewEditForm from '../invoice-new-edit-form';
|
---|
| 12 |
|
---|
| 13 | // ----------------------------------------------------------------------
|
---|
| 14 |
|
---|
| 15 | export default function InvoiceCreateView() {
|
---|
| 16 | const settings = useSettingsContext();
|
---|
| 17 |
|
---|
| 18 | return (
|
---|
| 19 | <Container maxWidth={settings.themeStretch ? false : 'lg'}>
|
---|
| 20 | <CustomBreadcrumbs
|
---|
| 21 | heading="Create a new invoice"
|
---|
| 22 | links={[
|
---|
| 23 | {
|
---|
| 24 | name: 'Dashboard',
|
---|
| 25 | href: paths.dashboard.root,
|
---|
| 26 | },
|
---|
| 27 | {
|
---|
| 28 | name: 'Invoice',
|
---|
| 29 | href: paths.dashboard.invoice.root,
|
---|
| 30 | },
|
---|
| 31 | {
|
---|
| 32 | name: 'New Invoice',
|
---|
| 33 | },
|
---|
| 34 | ]}
|
---|
| 35 | sx={{
|
---|
| 36 | mb: { xs: 3, md: 5 },
|
---|
| 37 | }}
|
---|
| 38 | />
|
---|
| 39 |
|
---|
| 40 | <InvoiceNewEditForm />
|
---|
| 41 | </Container>
|
---|
| 42 | );
|
---|
| 43 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.