UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

37 lines (31 loc) 948 B
import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import Paper from '@material-ui/core/Paper'; import Typography from '@material-ui/core/Typography'; const styles = theme => ({ root: { ...theme.mixins.gutters(), paddingTop: theme.spacing.unit * 2, paddingBottom: theme.spacing.unit * 2, }, }); function PaperSheet(props) { const { classes } = props; return ( <div> <Paper className={classes.root} elevation={1}> <Typography variant="h5" component="h3"> This is a sheet of paper. </Typography> <Typography component="p"> Paper can be used to build surface or other elements for your application. </Typography> </Paper> </div> ); } PaperSheet.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(PaperSheet);