diff options
| author | realtradam <[email protected]> | 2024-06-19 19:41:29 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-06-19 19:41:29 -0400 |
| commit | fc6c10718a633f0439b3aac045d4537c58bc7c6e (patch) | |
| tree | fa6b3a234650a1852e0d1a80e8b5c1b7c00123ac /src/routes/index.tsx | |
| parent | d477cb8af05a6b8acdb8afa1811777a68e742211 (diff) | |
| download | malcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.tar.gz malcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.zip | |
add small changes
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> |
