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:
1021 bytes
|
Line | |
---|
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 CustomerNewEditForm from '../customer-new-edit-form';
|
---|
12 |
|
---|
13 | // ----------------------------------------------------------------------
|
---|
14 |
|
---|
15 | export default function CustomerCreateView() {
|
---|
16 | const settings = useSettingsContext();
|
---|
17 |
|
---|
18 | return (
|
---|
19 | <Container maxWidth={settings.themeStretch ? false : 'lg'}>
|
---|
20 | <CustomBreadcrumbs
|
---|
21 | heading="Create a new customer"
|
---|
22 | links={[
|
---|
23 | {
|
---|
24 | name: 'Dashboard',
|
---|
25 | href: paths.dashboard.root,
|
---|
26 | },
|
---|
27 | {
|
---|
28 | name: 'Customer',
|
---|
29 | href: paths.dashboard.customer.list,
|
---|
30 | },
|
---|
31 | { name: 'New customer' },
|
---|
32 | ]}
|
---|
33 | sx={{
|
---|
34 | mb: { xs: 3, md: 5 },
|
---|
35 | }}
|
---|
36 | />
|
---|
37 |
|
---|
38 | <CustomerNewEditForm />
|
---|
39 | </Container>
|
---|
40 | );
|
---|
41 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.