feat: Add dummy pages
This commit is contained in:
11
packages/web/src/components/Container/index.tsx
Normal file
11
packages/web/src/components/Container/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import MuiContainer, { ContainerProps } from '@mui/material/Container';
|
||||
|
||||
export default function Container(props: ContainerProps) {
|
||||
return (
|
||||
<MuiContainer {...props} />
|
||||
);
|
||||
};
|
||||
|
||||
Container.defaultProps = {
|
||||
maxWidth: 'lg'
|
||||
};
|
Reference in New Issue
Block a user