From 1984d4343db770fc2c8e251a81f1ab997a4c4d5e Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 15 Aug 2018 20:31:53 +0200 Subject: webui: rework of the bug page with a timeline --- webui/src/App.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'webui/src/App.js') diff --git a/webui/src/App.js b/webui/src/App.js index a8157662..47a31e45 100644 --- a/webui/src/App.js +++ b/webui/src/App.js @@ -7,8 +7,8 @@ import React from 'react' import { Route, Switch, withRouter } from 'react-router' import { Link } from 'react-router-dom' -import BugPage from './bug/BugPage' -import ListPage from './list/ListPage' +import BugQuery from './bug/BugQuery' +import ListQuery from './list/ListQuery' const styles = theme => ({ appTitle: { @@ -30,8 +30,8 @@ const App = ({location, classes}) => ( - - + + ) -- cgit