MCPcopy Create free account
hub / github.com/BuilderIO/framework-benchmarks / App

Function App

frameworks/react/src/App.js:14–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12);
13
14function 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
31export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected