()
| 8 | import { Footer, PageContainer } from '../components'; |
| 9 | |
| 10 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected