source: src/sections/banking/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: 862 bytes
Line 
1'use client';
2
3// @mui
4import { alpha } from '@mui/material/styles';
5import Box from '@mui/material/Box';
6import Container from '@mui/material/Container';
7import Typography from '@mui/material/Typography';
8// components
9import { useSettingsContext } from 'src/components/settings';
10
11// ----------------------------------------------------------------------
12
13export default function BankingView() {
14 const settings = useSettingsContext();
15
16 return (
17 <Container maxWidth={settings.themeStretch ? false : 'xl'}>
18 <Typography variant="h4"> Banking </Typography>
19
20 <Box
21 sx={{
22 mt: 5,
23 width: 1,
24 height: 320,
25 borderRadius: 2,
26 bgcolor: (theme) => alpha(theme.palette.grey[500], 0.04),
27 border: (theme) => `dashed 1px ${theme.palette.divider}`,
28 }}
29 />
30 </Container>
31 );
32}
Note: See TracBrowser for help on using the repository browser.