import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { Paper, Typography } from '@material-ui/core'; const styles = theme => ({ root: theme.mixins.gutters({ paddingTop: 16, paddingBottom: 16, marginTop: theme.spacing(3), }), }); function PaperSheet(props) { const { classes } = props; return (