diff options
Diffstat (limited to 'src/routes/index.tsx')
| -rw-r--r-- | src/routes/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 71cfd3b..bab58be 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -5,6 +5,7 @@ import Blogs from "../components/Blogs"; import Games from "../components/Games"; import UploadGame from "../components/UploadGame"; import Game from "../components/Game"; +import Apps from "../components/Apps"; import Layout from "../components/Layout"; import CloseWindow from "../components/CloseWindow"; @@ -45,6 +46,7 @@ export default function Index() <Route path="/games" element={<Games />} /> <Route path="/games/upload" element={<UploadGame />} /> <Route path="/game/:game" element={<Game />} /> + <Route path="/apps" element={<Apps />} /> <Route path="/closewindow" element={<CloseWindow />} /> </Route> </Routes> |
