diff options
Diffstat (limited to 'src/routes/index.tsx')
| -rw-r--r-- | src/routes/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 4c2a666..d653bce 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -6,6 +6,7 @@ import Games from "../components/Games"; import UploadGame from "../components/UploadGame"; import Game from "../components/Game"; import Layout from "../components/Layout"; +import CloseWindow from "../components/CloseWindow"; export default function Index() { @@ -31,8 +32,8 @@ export default function Index() <Route path="/blogs" element={<Blogs />} /> <Route path="/games" element={<Games />} /> <Route path="/games/upload" element={<UploadGame />} /> - {/*<Route path="/games/upload" element={<GamesUpload />} />*/} <Route path="/game/:game" element={<Game />} /> + <Route path="/closewindow" element={<CloseWindow />} /> </Route> </Routes> </Router> |
