diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-14 22:56:59 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-14 22:56:59 +0100 |
commit | e9aff2a2a103b43852ecf7b57ae9ab297890eeed (patch) | |
tree | d66cb75151e42ada31e1d0179f8dba0ace388989 /webui/src/bug/SetStatus.tsx | |
parent | b2ca506210b3eb63c4964e5bb47203fd5341ddf4 (diff) | |
parent | 2df72942f2b057956c7873f908b64880ab647331 (diff) | |
download | git-bug-e9aff2a2a103b43852ecf7b57ae9ab297890eeed.tar.gz |
Merge remote-tracking branch 'origin/master' into cheshirekow-jira
Diffstat (limited to 'webui/src/bug/SetStatus.tsx')
-rw-r--r-- | webui/src/bug/SetStatus.tsx | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/webui/src/bug/SetStatus.tsx b/webui/src/bug/SetStatus.tsx new file mode 100644 index 00000000..3e1a7989 --- /dev/null +++ b/webui/src/bug/SetStatus.tsx @@ -0,0 +1,31 @@ +import { makeStyles } from '@material-ui/core/styles'; +import React from 'react'; + +import Author from '../Author'; +import Date from '../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; |