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
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import Stack from '@mui/material/Stack';
|
---|
| 3 | import Container from '@mui/material/Container';
|
---|
| 4 | //
|
---|
| 5 | import { HeaderSimple as Header } from '../_common';
|
---|
| 6 |
|
---|
| 7 | // ----------------------------------------------------------------------
|
---|
| 8 |
|
---|
| 9 | type Props = {
|
---|
| 10 | children: React.ReactNode;
|
---|
| 11 | };
|
---|
| 12 |
|
---|
| 13 | export 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.