diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 7d7c446..2b3709e 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -12,6 +12,7 @@ import CollabLearning from './pages/CollabLearning'; import Review from './pages/Review'; import CharacterSelection from './pages/CharacterSelection'; import Character from './pages/Character'; +import Lesson from './pages/Lesson'; const router = createBrowserRouter([ { @@ -49,6 +50,10 @@ const router = createBrowserRouter([ { path: '/character', element: + }, + { + path: '/lesson', + element: } ])