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.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx
index 16663870..f7df7d2b 100644
--- a/webui/src/App.tsx
+++ b/webui/src/App.tsx
@@ -4,12 +4,14 @@ import { Route, Switch } from 'react-router';
import Layout from './layout';
import BugPage from './pages/bug';
import ListPage from './pages/list';
+import NewPage from './pages/new/NewPage';
export default function App() {
return (
<Layout>
<Switch>
<Route path="/" exact component={ListPage} />
+ <Route path="/new" exact component={NewPage} />
<Route path="/bug/:id" exact component={BugPage} />
</Switch>
</Layout>