Skip to content

Commit 78a9df6

Browse files
committed
Added back frontend pages
1 parent fed95d7 commit 78a9df6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

frontend/src/App.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,18 @@ const App: React.FC = () => {
1212
}, []);
1313

1414
return (
15-
// <UserContextProvider>
15+
<UserContextProvider>
1616

1717
<div className="App h-screen bg-gray-900 text-white">
1818
<Routes>
19-
{/* <Route path='/' element={<LoginPage />} /> */}
20-
<Route path='/' element={<QuestionServicePage />} />
21-
{/* <Route path='/login' element={<LoginPage />} /> */}
22-
{/* <Route path='/profile' element={<ProfilePage />} /> */}
19+
<Route path='/' element={<LoginPage />} />
20+
<Route path='/login' element={<LoginPage />} />
21+
<Route path='/profile' element={<ProfilePage />} />
2322
<Route path="/questions-page" element={<QuestionServicePage />} />
2423
</Routes>
2524
</div>
2625

27-
// </UserContextProvider>
26+
</UserContextProvider>
2827
);
2928
};
3029

0 commit comments

Comments
 (0)