From bcd00f90d9a76990909d456c9628d3db2002d5c3 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Wed, 26 May 2021 23:44:04 +0100 Subject: [PATCH] Update pages and routing --- src/App.tsx | 8 ++++++++ src/pages/index.tsx | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index edc039a..1b44a26 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -26,7 +26,9 @@ import { Category, Prototype, AddCategory, + AddFeature, CategorySettings, + FeatureSettings, } from './pages'; import { GetUserByIdQuery, GetUserByIdQueryVariables } from './graphql/types'; import { GET_USER_BY_ID } from './graphql/auth.api'; @@ -108,6 +110,12 @@ const App = () => { + + + + + + diff --git a/src/pages/index.tsx b/src/pages/index.tsx index d584c62..1463601 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -13,7 +13,9 @@ import CreateUser from './CreateUser'; import Settings from './Settings'; import UserSettings from './UserSettings'; import AddCategory from './AddCategory'; +import AddFeature from './AddFeature'; import CategorySettings from './CategorySettings'; +import FeatureSettings from './FeatureSettings'; export { Login, @@ -31,5 +33,7 @@ export { Settings, UserSettings, AddCategory, + AddFeature, CategorySettings, + FeatureSettings, };