Files
automatisch/packages/web/src/components/Container/index.tsx
2022-01-20 17:09:12 +01:00

13 lines
283 B
TypeScript

import * as React from 'react';
import MuiContainer, { ContainerProps } from '@mui/material/Container';
export default function Container(props: ContainerProps): React.ReactElement {
return (
<MuiContainer {...props} />
);
};
Container.defaultProps = {
maxWidth: 'lg'
};