blob: b6dd419d5bfc2fd8e86e0c7258f6de09d99e9566 (
plain) (
tree)
|
|
import { makeStyles } from '@material-ui/styles';
import React from 'react';
import Author from '../Author';
import Date from '../Date';
const useStyles = makeStyles(theme => ({
main: {
...theme.typography.body1,
marginLeft: theme.spacing(1) + 40,
},
}));
function SetStatus({ op }) {
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;
|