()
| 31 | } |
| 32 | |
| 33 | function AuthApp() { |
| 34 | return ( |
| 35 | <BrowserRouter> |
| 36 | <Routes> |
| 37 | <Route |
| 38 | path="/" |
| 39 | element={<Layout><Landing /></Layout>} |
| 40 | /> |
| 41 | <Route |
| 42 | path="/login" |
| 43 | element={<Login />} |
| 44 | /> |
| 45 | <Route |
| 46 | path="/game/:gameId" |
| 47 | element={<Layout><Game /></Layout>} |
| 48 | /> |
| 49 | <Route |
| 50 | path='/settings' |
| 51 | element={<Layout><Settings /></Layout>} |
| 52 | > |
| 53 | <Route path="themes" element={<Themes />} /> |
| 54 | </Route> |
| 55 | </Routes> |
| 56 | </BrowserRouter> |
| 57 | ); |
| 58 | } |
| 59 | |
| 60 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected