aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/list/List.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/list/List.tsx')
-rw-r--r--webui/src/list/List.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/webui/src/list/List.tsx b/webui/src/list/List.tsx
deleted file mode 100644
index cebd13f2..00000000
--- a/webui/src/list/List.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-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;