Files
automatisch/packages/web/src/components/Container/index.tsx
2022-11-05 23:57:33 +01:00

11 lines
273 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',
};