summaryrefslogtreecommitdiffhomepage
path: root/src/routes/index.tsx
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-19 19:41:29 -0400
committerrealtradam <[email protected]>2024-06-19 19:41:29 -0400
commitfc6c10718a633f0439b3aac045d4537c58bc7c6e (patch)
treefa6b3a234650a1852e0d1a80e8b5c1b7c00123ac /src/routes/index.tsx
parentd477cb8af05a6b8acdb8afa1811777a68e742211 (diff)
downloadmalcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.tar.gz
malcz.com-fc6c10718a633f0439b3aac045d4537c58bc7c6e.zip
add small changes
Diffstat (limited to 'src/routes/index.tsx')
-rw-r--r--src/routes/index.tsx2
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>