diff options
Diffstat (limited to 'frontend/src/components/GameEntry.tsx')
| -rw-r--r-- | frontend/src/components/GameEntry.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/GameEntry.tsx b/frontend/src/components/GameEntry.tsx index 454efb1..deeb0ed 100644 --- a/frontend/src/components/GameEntry.tsx +++ b/frontend/src/components/GameEntry.tsx | |||
| @@ -2,7 +2,7 @@ import React from "react"; | |||
| 2 | import { Link } from "react-router-dom"; | 2 | import { Link } from "react-router-dom"; |
| 3 | 3 | ||
| 4 | import { Game, GameCategoryPortals } from "@customTypes/Game"; | 4 | import { Game, GameCategoryPortals } from "@customTypes/Game"; |
| 5 | import "@css/Games.css" | 5 | import "@css/Games.css"; |
| 6 | 6 | ||
| 7 | import GameCategory from "@components/GameCategory"; | 7 | import GameCategory from "@components/GameCategory"; |
| 8 | 8 | ||
| @@ -25,7 +25,7 @@ const GameEntry: React.FC<GameEntryProps> = ({ game }) => { | |||
| 25 | </div> | 25 | </div> |
| 26 | <div id={game.id as any as string} className='games-page-item-body'> | 26 | <div id={game.id as any as string} className='games-page-item-body'> |
| 27 | {catInfo.map((cat, index) => { | 27 | {catInfo.map((cat, index) => { |
| 28 | return <GameCategory cat={cat} game={game} key={index}></GameCategory> | 28 | return <GameCategory cat={cat} game={game} key={index}></GameCategory>; |
| 29 | })} | 29 | })} |
| 30 | </div> | 30 | </div> |
| 31 | </div></Link> | 31 | </div></Link> |