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/components/Game.tsx | |
| 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/components/Game.tsx')
| -rw-r--r-- | src/components/Game.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/Game.tsx b/src/components/Game.tsx new file mode 100644 index 0000000..51d5b3e --- /dev/null +++ b/src/components/Game.tsx @@ -0,0 +1,20 @@ +//import React, { useState, useEffect } from "react"; +import { useParams } from "react-router-dom"; + +//<Route path="/game/:game" element={<Game />} /> + +//export default () => ( +export default function Games () { + const { game } = useParams(); +//http://%{VITE_API_TITLE}/api/v1/game/realtradam/orc-arena-of-time/index.html + return( + <> + <div className="w-max flex grow shrink justify-center"> + <div className="w-max flex flex-col gap-16 max-w-6xl shrink grow"> + <div className="title font-bold text-6xl font-title">{game}</div> + <iframe style={{ aspectRatio: 1 }} className="bg-black aspect-square max-h-[90vh] rounded" src={`${import.meta.env.VITE_API_TITLE}/game/realtradam/${game}/index.html`} title={game}></iframe> + </div> + </div> + </> + ); +} |
