aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list/List.tsx
blob: 4d0666ecf715b28a7c857dd84e4134c03dfae8c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Table from '@mui/material/Table/Table';
import TableBody from '@mui/material/TableBody/TableBody';

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;