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 (
This is a sheet of paper. Paper can be used to build surface or other elements for your application.
); } PaperSheet.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(PaperSheet);