import { PlayerInfo as FullPlayerInfo } from "../../models/PlayerInfo"; import PlayerProfile from "../PlayerProfile"; type PlayerInfo = Pick; type Props = { gameDisplayName: string; playerInfoA: PlayerInfo; playerInfoB: PlayerInfo; }; export default function GolfWatchAppWaiting({ gameDisplayName, playerInfoA, playerInfoB, }: Props) { return (
{gameDisplayName}
vs.
); }