aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.tsx
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-01-31 20:17:30 +0100
committerGitHub <noreply@github.com>2021-01-31 20:17:30 +0100
commitabd16ff345c5246d3bdf0382b69bea59637f73e1 (patch)
tree180c69f0ff553be44f882ab2eabbc1ae68bf9576 /webui/src/App.tsx
parent1b4eeb0690b543462d23c35a95d2243ff8c5aa7a (diff)
parent32eb1819aa1fbba9f423414a2200307f9b84be82 (diff)
downloadgit-bug-abd16ff345c5246d3bdf0382b69bea59637f73e1.tar.gz
Merge pull request #538 from claudioantonio/webui_158
Webui - Allow to create bugs #158
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..3a5ef025 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 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>