aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/SetStatus.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/bug/SetStatus.tsx')
-rw-r--r--webui/src/bug/SetStatus.tsx31
1 files changed, 0 insertions, 31 deletions
diff --git a/webui/src/bug/SetStatus.tsx b/webui/src/bug/SetStatus.tsx
deleted file mode 100644
index 86105c8a..00000000
--- a/webui/src/bug/SetStatus.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { makeStyles } from '@material-ui/core/styles';
-import React from 'react';
-
-import Author from '../components/Author';
-import Date from '../components/Date';
-
-import { SetStatusFragment } from './SetStatusFragment.generated';
-
-const useStyles = makeStyles(theme => ({
- main: {
- ...theme.typography.body1,
- marginLeft: theme.spacing(1) + 40,
- },
-}));
-
-type Props = {
- op: SetStatusFragment;
-};
-
-function SetStatus({ op }: Props) {
- const classes = useStyles();
- return (
- <div className={classes.main}>
- <Author author={op.author} bold />
- <span> {op.status.toLowerCase()} this</span>
- <Date date={op.date} />
- </div>
- );
-}
-
-export default SetStatus;