()
| 6 | import How from './pages/How'; |
| 7 | |
| 8 | function App() { |
| 9 | return ( |
| 10 | <Routes> |
| 11 | <Route path="/" element={<Home/>} /> |
| 12 | <Route path='/terms-and-conditions' element={<Terms/>}/> |
| 13 | <Route path='/privacy-policy' element={<PrivacyPolicy/>}/> |
| 14 | <Route path='/how-to-use' element={<How/>} /> |
| 15 | <Route path='/*' element={<NotFound/>} /> |
| 16 | </Routes> |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected