import React from 'react'; import { makeStyles } from '@material-ui/core/styles'; import Author from 'src/components/Author'; import Date from 'src/components/Date'; import { SetStatusFragment } from './SetStatusFragment.generated'; const useStyles = makeStyles(theme => ({ main: { ...theme.typography.body2, marginLeft: theme.spacing(1) + 40, }, })); type Props = { op: SetStatusFragment; }; function SetStatus({ op }: Props) { const classes = useStyles(); return (
{op.status.toLowerCase()} this
); } export default SetStatus;