MCPcopy Create free account
hub / github.com/IamIsPra/tinywebp / App

Function App

src/App.tsx:8–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6import How from './pages/How';
7
8function 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
20export default App;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected