import Image from "next/image"; import { Game } from "../types/Game"; interface GameSelectionProps { games: Game[]; selectedGame: Game | null; onSelect: (game: Game) => void; } export function GameSelection({ games, selectedGame, onSelect }: GameSelectionProps) { return (
Coming Soon
)}