8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { styled } from '@mui/system';
|
|
|
|
export const LayoutWrapper = styled('div')({
|
|
display: 'flex',
|
|
width: '100%',
|
|
height: '100vh',
|
|
overflow: 'hidden',
|
|
}); |