MCPcopy Create free account
hub / github.com/apollographql/fullstack-tutorial / Pages

Function Pages

final/client/src/pages/index.tsx:10–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8import { Footer, PageContainer } from '../components';
9
10export default function Pages() {
11 return (
12 <Router>
13 <PageContainer>
14 <Routes>
15 <Route path="/" element={<Launches />} />
16 <Route path="launch/:launchId" element={<Launch />} />
17 <Route path="cart" element={<Cart />} />
18 <Route path="profile" element={<Profile />} />
19 </Routes>
20 </PageContainer>
21 <Footer />
22 </Router>
23 );
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected