9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
import { Box, styled } from '@mui/material';
|
|
|
|
export const Container = styled(Box)(() => ({
|
|
width: '100%',
|
|
maxWidth: '100vw',
|
|
height: '100vh',
|
|
margin: '0 auto',
|
|
}));
|