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, };