aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r--webui/src/App.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx
index 16663870..b9ade974 100644
--- a/webui/src/App.tsx
+++ b/webui/src/App.tsx
@@ -1,15 +1,17 @@
import React from 'react';
import { Route, Switch } from 'react-router';
-import Layout from './layout';
+import Layout from './components/Header';
import BugPage from './pages/bug';
import ListPage from './pages/list';
+import NewBugPage from './pages/new/NewBugPage';
export default function App() {
return (
<Layout>
<Switch>
<Route path="/" exact component={ListPage} />
+ <Route path="/new" exact component={NewBugPage} />
<Route path="/bug/:id" exact component={BugPage} />
</Switch>
</Layout>