import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { Typography, Paper, Divider, Grid } from '@material-ui/core'; const styles = theme => ({ container: { display: 'grid', gridTemplateColumns: 'repeat(12, 1fr)', gridGap: `${theme.spacing(3)}px`, }, paper: { padding: theme.spacing(1), textAlign: 'center', color: theme.palette.text.secondary, whiteSpace: 'nowrap', marginBottom: theme.spacing(1), backgroundColor: theme.palette.secondary.light, }, divider: { margin: `${theme.spacing(2)}px 0`, }, }); function CSSGrid(props) { const { classes } = props; return (