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

Function Pages

start/client/src/pages/index.tsx:9–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected