File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,19 @@ const App: React.FC = () => {
12
12
} , [ ] ) ;
13
13
14
14
return (
15
- < UserContextProvider >
15
+ // <UserContextProvider>
16
16
17
17
< div className = "App h-screen bg-gray-900 text-white" >
18
18
< Routes >
19
- < Route path = '/' element = { < LoginPage /> } />
20
- < Route path = '/login' element = { < LoginPage /> } />
21
- < Route path = '/profile' element = { < ProfilePage /> } />
19
+ { /* <Route path='/' element={<LoginPage />} /> */ }
20
+ < Route path = '/' element = { < QuestionServicePage /> } />
21
+ { /* <Route path='/login' element={<LoginPage />} /> */ }
22
+ { /* <Route path='/profile' element={<ProfilePage />} /> */ }
22
23
< Route path = "/questions-page" element = { < QuestionServicePage /> } />
23
24
</ Routes >
24
25
</ div >
25
26
26
- </ UserContextProvider >
27
+ // </UserContextProvider>
27
28
) ;
28
29
} ;
29
30
You can’t perform that action at this time.
0 commit comments