aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/App.tsx')
-rw-r--r--src/client/App.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/App.tsx b/src/client/App.tsx
index 3c20c54..e1b794c 100644
--- a/src/client/App.tsx
+++ b/src/client/App.tsx
@@ -4,6 +4,7 @@ import {
DeckDetailPage,
HomePage,
LoginPage,
+ NoteTypesPage,
NotFoundPage,
StudyPage,
} from "./pages";
@@ -28,6 +29,11 @@ export function App() {
<StudyPage />
</ProtectedRoute>
</Route>
+ <Route path="/note-types">
+ <ProtectedRoute>
+ <NoteTypesPage />
+ </ProtectedRoute>
+ </Route>
<Route path="/login" component={LoginPage} />
<Route component={NotFoundPage} />
</Switch>