aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/list/List.tsx
blob: 23b193d4d187de58c2cce21c3182023a5d61a6b3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                              

                              
                                                        
 

                                       
          






                                               
    
 
 
                    
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 (
    <Table>
      <TableBody>
        {bugs.edges.map(({ cursor, node }) => (
          <BugRow bug={node} key={cursor} />
        ))}
      </TableBody>
    </Table>
  );
}

export default List;