source: src/layouts/compact/layout.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: 709 bytes
RevLine 
[5d6f37a]1// @mui
2import Stack from '@mui/material/Stack';
3import Container from '@mui/material/Container';
4//
5import { HeaderSimple as Header } from '../_common';
6
7// ----------------------------------------------------------------------
8
9type Props = {
10 children: React.ReactNode;
11};
12
13export default function CompactLayout({ children }: Props) {
14 return (
15 <>
16 <Header />
17
18 <Container component="main">
19 <Stack
20 sx={{
21 py: 12,
22 m: 'auto',
23 maxWidth: 400,
24 minHeight: '100vh',
25 textAlign: 'center',
26 justifyContent: 'center',
27 }}
28 >
29 {children}
30 </Stack>
31 </Container>
32 </>
33 );
34}
Note: See TracBrowser for help on using the repository browser.