import { FC } from "react"; import PlayerDecks from "./PlayerDecks"; import { Game } from "../types/gameTypes"; import CardStackStaple from "./CardStackStaple"; import DiscardPile from "./DiscardPile"; type PlayAreaProps = { gameData: Game | null; }; const PlayArea: FC = ({ gameData }) => { if (!gameData) return null; return ( <> ); }; export default PlayArea;