import Table from '@material-ui/core/Table/Table'; import TableBody from '@material-ui/core/TableBody/TableBody'; import React from 'react'; import BugRow from './BugRow'; import { BugListFragment } from './ListQuery.generated'; type Props = { bugs: BugListFragment }; function List({ bugs }: Props) { return ( {bugs.edges.map(({ cursor, node }) => ( ))}
); } export default List;