aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.tsx
diff options
context:
space:
mode:
authorCláudio <claudio.engdist@gmail.com>2021-01-28 21:24:40 -0300
committerCláudio <claudio.engdist@gmail.com>2021-01-28 21:24:40 -0300
commitf8d41c3bcda516cd33be25475ac52ab72c376e1f (patch)
tree333df9ea0ba24dd1064408637b86ae3f36a40800 /webui/src/App.tsx
parentc009bea662d9fc875c8e7cb266cebbfc2985f226 (diff)
downloadgit-bug-f8d41c3bcda516cd33be25475ac52ab72c376e1f.tar.gz
Partial commit for #158
- It´s possible to create new issues from webui (only title) Next step - Finish new issue form (First comment field and style) - Update Readme about codegen usage and enforcing playground usage
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r--webui/src/App.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx
index f7df7d2b..3a5ef025 100644
--- a/webui/src/App.tsx
+++ b/webui/src/App.tsx
@@ -4,14 +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';
+import NewBugPage from './pages/new/NewBugPage';
export default function App() {
return (
<Layout>
<Switch>
<Route path="/" exact component={ListPage} />
- <Route path="/new" exact component={NewPage} />
+ <Route path="/new" exact component={NewBugPage} />
<Route path="/bug/:id" exact component={BugPage} />
</Switch>
</Layout>