diff options
author | Cláudio <claudio.engdist@gmail.com> | 2021-01-26 14:54:58 -0300 |
---|---|---|
committer | Cláudio <claudio.engdist@gmail.com> | 2021-01-26 14:54:58 -0300 |
commit | c009bea662d9fc875c8e7cb266cebbfc2985f226 (patch) | |
tree | c4f435f28317f3d79f1be569eabfab19cb0e1990 /webui/src/App.tsx | |
parent | 343ef1455edca4e9b807700885c53cc6c43d19d9 (diff) | |
download | git-bug-c009bea662d9fc875c8e7cb266cebbfc2985f226.tar.gz |
Partial commit for #158
- Component GBButton created
- New issue form partially created (only title)
- Refactoring for GBButon usage
Next steps
- Practice GraphQL calls
- Finish New issue form (add first comment and submit)
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r-- | webui/src/App.tsx | 2 |
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> |