summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--react-frontend/src/pages/Games.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/react-frontend/src/pages/Games.tsx b/react-frontend/src/pages/Games.tsx
index 2a9b23a..5278afd 100644
--- a/react-frontend/src/pages/Games.tsx
+++ b/react-frontend/src/pages/Games.tsx
@@ -1,5 +1,5 @@
import { useState, useEffect } from "react";
-import GameCard from "../components/GameCard";
+import GameCard, { GameType } from "../components/GameCard";
export default function Games () {
const [games, setGames] = useState<GameType[]>([]);