MCPcopy Create free account
hub / github.com/code100x/chess / AuthApp

Function AuthApp

apps/frontend/src/App.tsx:33–58  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31}
32
33function 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
60export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected