From ce6f6a984b374b189141116433ced80dfa0c2aae Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 13 Feb 2020 20:00:03 +0100 Subject: webui: move pages components --- webui/src/list/List.tsx | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 webui/src/list/List.tsx (limited to 'webui/src/list/List.tsx') 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 ( - - - {bugs.edges.map(({ cursor, node }) => ( - - ))} - -
- ); -} - -export default List; -- cgit