From ecbc5a6862381c63d4d1b80d93f9a75b1e868f5a Mon Sep 17 00:00:00 2001 From: realtradam Date: Sat, 29 Jun 2024 00:39:47 -0400 Subject: fix typing --- react-frontend/src/pages/Games.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'react-frontend') 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([]); -- cgit v1.2.3