diff options
| author | realtradam <[email protected]> | 2024-06-06 19:24:45 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-06-06 19:24:45 -0400 |
| commit | 34346b1fd4fffd2571374f86b16084066dc4aa2d (patch) | |
| tree | 1f147151e9b1eb9449394d5adb1827b04c4841c5 /src/routes | |
| parent | 7a38eef00de0bb35565dda3ddb1efa748c22ea47 (diff) | |
| download | malcz.com-34346b1fd4fffd2571374f86b16084066dc4aa2d.tar.gz malcz.com-34346b1fd4fffd2571374f86b16084066dc4aa2d.zip | |
add seperate uploading page and update match backend functionality
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/index.tsx (renamed from src/routes/index.jsx) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/routes/index.jsx b/src/routes/index.tsx index 67f76a7..9a5f11b 100644 --- a/src/routes/index.jsx +++ b/src/routes/index.tsx @@ -1,16 +1,17 @@ -import React, { useState, useEffect } from "react"; +import { useState, useEffect } from "react"; import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; import Home from "../components/Home"; import Blogs from "../components/Blogs"; import Games from "../components/Games"; +import UploadGame from "../components/UploadGame"; import Game from "../components/Game"; import Layout from "../components/Layout"; -export default function index() +export default function Index() { const [userData, setUserData] = useState({}); - const url = `${import.meta.env.VITE_API_TITLE}/api/v1/auth/data`; useEffect(() => { + const url = `${import.meta.env.VITE_API_TITLE}/api/v1/auth/data`; fetch(url, { credentials: "include" }).then((response) => { @@ -29,6 +30,7 @@ export default function index() <Route index element={<Home />} /> <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> |
