From c009bea662d9fc875c8e7cb266cebbfc2985f226 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Tue, 26 Jan 2021 14:54:58 -0300 Subject: 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) --- webui/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webui/src/App.tsx') 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 ( + -- cgit From f8d41c3bcda516cd33be25475ac52ab72c376e1f Mon Sep 17 00:00:00 2001 From: Cláudio Date: Thu, 28 Jan 2021 21:24:40 -0300 Subject: Partial commit for #158 - It´s possible to create new issues from webui (only title) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Next step - Finish new issue form (First comment field and style) - Update Readme about codegen usage and enforcing playground usage --- webui/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webui/src/App.tsx') 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 ( - + -- cgit