aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/SetStatus.tsx
blob: 3e1a798964dcb436b0dca934a9de743d5d5db21c (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                      
                          
 

                               
 
                                                                  
 
                                        
         

                                      
    
    
 




                                   
                              





                                                  
    
 
 
                         
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;