aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/SetTitle.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/bug/SetTitle.tsx')
-rw-r--r--webui/src/bug/SetTitle.tsx37
1 files changed, 0 insertions, 37 deletions
diff --git a/webui/src/bug/SetTitle.tsx b/webui/src/bug/SetTitle.tsx
deleted file mode 100644
index e57aaafb..00000000
--- a/webui/src/bug/SetTitle.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-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;