UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

56 lines (51 loc) 1.56 kB
import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import List from '@material-ui/core/List'; import ListItem from '@material-ui/core/ListItem'; import ListItemIcon from '@material-ui/core/ListItemIcon'; import ListItemText from '@material-ui/core/ListItemText'; import Divider from '@material-ui/core/Divider'; import InboxIcon from '@material-ui/icons/Inbox'; import DraftsIcon from '@material-ui/icons/Drafts'; const styles = theme => ({ root: { width: '100%', maxWidth: 360, backgroundColor: theme.palette.background.paper, }, }); function SimpleList(props) { const { classes } = props; return ( <div className={classes.root}> <List component="nav"> <ListItem button> <ListItemIcon> <InboxIcon /> </ListItemIcon> <ListItemText primary="Inbox" /> </ListItem> <ListItem button> <ListItemIcon> <DraftsIcon /> </ListItemIcon> <ListItemText primary="Drafts" /> </ListItem> </List> <Divider /> <List component="nav"> <ListItem button> <ListItemText primary="Trash" /> </ListItem> <ListItem button component="a" href="#simple-list"> <ListItemText primary="Spam" /> </ListItem> </List> </div> ); } SimpleList.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(SimpleList);