import { makeStyles } from '@material-ui/core/styles'; import React from 'react'; import Author from '../Author'; import Date from '../Date'; import { SetTitleFragment } from './SetTitleFragment.generated'; const useStyles = makeStyles(theme => ({ main: { ...theme.typography.body1, marginLeft: theme.spacing(1) + 40, }, bold: { fontWeight: 'bold', }, })); type Props = { op: SetTitleFragment; }; function SetTitle({ op }: Props) { const classes = useStyles(); return (
changed the title from {op.was} to {op.title}
); } export default SetTitle;