import { makeStyles } from '@material-ui/styles'; import React from 'react'; import Author from '../Author'; import Date from '../Date'; import Label from '../Label'; const useStyles = makeStyles(theme => ({ main: { ...theme.typography.body1, marginLeft: theme.spacing(1) + 40, }, author: { fontWeight: 'bold', }, })); function LabelChange({ op }) { const { added, removed } = op; const classes = useStyles(); return (
{added.length > 0 && added the } {added.map((label, index) => (
); } export default LabelChange;