import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { Paper, Grid } from '@material-ui/core'; const styles = theme => ({ root: { flexGrow: 1, }, paper: { padding: theme.spacing(2), textAlign: 'center', color: theme.palette.text.secondary, backgroundColor: theme.palette.secondary.light, }, }); function CenteredGrid(props) { const { classes } = props; return (
xs=12 xs=6 xs=6 xs=3 xs=3 xs=3 xs=3
); } CenteredGrid.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(CenteredGrid);