import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import imgApi from 'ba-api/images'; import avatarApi from 'ba-api/avatars'; import { Typography, Grid, Divider } from '@material-ui/core'; import GeneralCard from '../CardPaper/GeneralCard'; import PostCard from '../CardPaper/PostCard'; import Quote from '../Quote/Quote'; const styles = theme => ({ divider: { margin: `${theme.spacing(3)}px 0`, }, }); class Favorites extends React.Component { render() { const { classes } = this.props; const bull = ; return ( Word of the Day be {bull} nev {bull} o {bull} lent adjective well meaning and kindly.
{'"a benevolent smile"'}
); } } Favorites.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(Favorites);