aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/SetTitle.tsx
blob: e57aaafb13d9ef32b31b4bc9aa773c52a1388f89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { makeStyles } from '@material-ui/core/styles';
import React from 'react';

import Author from '../components/Author';
import Date from '../components/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 (
    <div className={classes.main}>
      <Author author={op.author} className={classes.bold} />
      <span> changed the title from </span>
      <span className={classes.bold}>{op.was}</span>
      <span> to </span>
      <span className={classes.bold}>{op.title}</span>
      <Date date={op.date} />
    </div>
  );
}

export default SetTitle;