()
| 6 | import { Home } from "./pages/Home"; |
| 7 | |
| 8 | function 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 | |
| 22 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected