13 lines
283 B
TypeScript
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'
|
|
};
|