MCPcopy Create free account
hub / github.com/code100x/plinkoo / App

Function App

frontend/src/App.tsx:8–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6import { Home } from "./pages/Home";
7
8function App() {
9 return (
10 <BrowserRouter>
11 <Navbar />
12 <Routes>
13 <Route path="/" element={<Home />} />
14 <Route path="/simulation" element={<Simulation />} />
15 <Route path="/game" element={<Game />} />
16 </Routes>
17 <Footer />
18 </BrowserRouter>
19 );
20}
21
22export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected