diff --git a/src/pages/game.tsx b/src/pages/game.tsx index 46767b6..59cabc1 100644 --- a/src/pages/game.tsx +++ b/src/pages/game.tsx @@ -1,3 +1,4 @@ +import { GameBoard } from "@/components/organisms/GameBoard"; import { SorceryCard } from "@/types/card"; import { useState } from "react"; @@ -29,4 +30,6 @@ export default function GamePage() { } as GameCard, ], ]); + + return ; }