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