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 (
{op.status.toLowerCase()} this
); } export default SetStatus;