import { withStyles } from '@material-ui/core/styles'; import Typography from '@material-ui/core/Typography/Typography'; import gql from 'graphql-tag'; import React from 'react'; import Author from '../Author'; import Date from '../Date'; import TimelineQuery from './TimelineQuery'; import Label from '../Label'; const styles = theme => ({ main: { maxWidth: 800, margin: 'auto', marginTop: theme.spacing.unit * 4, }, header: { marginLeft: theme.spacing.unit + 40, }, title: { ...theme.typography.headline, }, id: { ...theme.typography.subheading, marginLeft: theme.spacing.unit, }, container: { display: 'flex', marginBottom: theme.spacing.unit, }, timeline: { flex: 1, marginTop: theme.spacing.unit * 2, marginRight: theme.spacing.unit * 2, }, sidebar: { marginTop: theme.spacing.unit * 2, flex: '0 0 200px', }, labelList: { listStyle: 'none', padding: 0, margin: 0, }, label: { marginTop: theme.spacing.unit, marginBottom: theme.spacing.unit, '& > *': { display: 'block', }, }, }); const Bug = ({ bug, classes }) => (
{bug.title} {bug.humanId} {' opened this bug '}
Labels
    {bug.labels.map(l => (
  • ))}
); Bug.fragment = gql` fragment Bug on Bug { id humanId status title labels createdAt author { email name displayName } } `; export default withStyles(styles)(Bug);