()
| 12 | ); |
| 13 | |
| 14 | function App() { |
| 15 | return ( |
| 16 | <> |
| 17 | <Suspense fallback={<p>Loading...</p>}> |
| 18 | <Router> |
| 19 | <AppHeader framework="react" path={location.pathname} /> |
| 20 | <Routes> |
| 21 | <Route path="/dashboard" element={<Dashboard />} /> |
| 22 | <Route path="/todo" element={<Todo />} /> |
| 23 | <Route exact path="/" element={<HelloWorld />} /> |
| 24 | </Routes> |
| 25 | </Router> |
| 26 | </Suspense> |
| 27 | </> |
| 28 | ); |
| 29 | } |
| 30 | |
| 31 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected