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