Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sourabhbagrecha/f4f69d539ce10eb2a567ee57e88437e1 to your computer and use it in GitHub Desktop.
Save sourabhbagrecha/f4f69d539ce10eb2a567ee57e88437e1 to your computer and use it in GitHub Desktop.
import { Box, Paper, useTheme } from '@mui/material';
import React from 'react'
const PageContainer = (props) => {
const theme = useTheme();
return (<Box sx={{ backgroundColor: theme.palette.grey[200] }}>
<Paper sx={{ maxWidth: "50rem", marginX: "auto", minHeight: "90vh", paddingX: "20px", paddingY: "10px" }}>
{props.children}
</Paper>
</Box>
)
}
export default PageContainer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment