Skip to content

Instantly share code, notes, and snippets.

@elzup
Created October 24, 2018 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elzup/6c22b33925baea195c987f9d6b4e16c1 to your computer and use it in GitHub Desktop.
Save elzup/6c22b33925baea195c987f9d6b4e16c1 to your computer and use it in GitHub Desktop.
Page container component
import { Grid, Paper } from '@material-ui/core'
export const Page = (props: Object) => (
<Grid container justify={'center'}>
<Grid item xs={12} sm={12} md={10}>
<Paper {...props} />
</Grid>
</Grid>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment