source: src/sections/user/view/customer-create-view.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: 1021 bytes
Line 
1'use client';
2
3// @mui
4import Container from '@mui/material/Container';
5// routes
6import { paths } from 'src/routes/paths';
7// components
8import { useSettingsContext } from 'src/components/settings';
9import CustomBreadcrumbs from 'src/components/custom-breadcrumbs';
10//
11import CustomerNewEditForm from '../customer-new-edit-form';
12
13// ----------------------------------------------------------------------
14
15export 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.