Files
Account/src/components/common/Container.tsx
Koosha Lahouti f7207b8545 fix: merge errors
2025-08-16 11:21:30 +03:30

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',
}));