import { PlayerInfo } from "../../models/PlayerInfo"; import PlayerProfile from "../PlayerProfile"; type Props = { gameDisplayName: string; playerInfo: Omit; }; export default function GolfPlayAppWaiting({ gameDisplayName, playerInfo, }: Props) { return ( <>
{gameDisplayName}
); }