import React from 'react'; import { Typography } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; import Author from 'src/components/Author'; import Date from 'src/components/Date'; import Label from 'src/components/Label'; import { LabelChangeFragment } from './LabelChangeFragment.generated'; const useStyles = makeStyles((theme) => ({ main: { color: theme.palette.text.secondary, marginLeft: theme.spacing(1) + 40, }, author: { fontWeight: 'bold', color: theme.palette.text.secondary, }, label: { maxWidth: '50ch', marginLeft: theme.spacing(0.25), marginRight: theme.spacing(0.25), }, })); type Props = { op: LabelChangeFragment; }; function LabelChange({ op }: Props) { const { added, removed } = op; const classes = useStyles(); return ( {added.length > 0 && added the } {added.map((label, index) => ( ); } export default LabelChange;