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