import { Badge } from "~/components/ui/badge"; interface RecentPicksSectionProps { picks: Array<{ id: string; pickNumber: number; round: number; participant: { name: string; }; sport: { name: string; }; team: { name: string; }; }>; } export function RecentPicksSection({ picks }: RecentPicksSectionProps) { return (
No picks yet...
) : ({pick.participant.name}
{pick.sport.name}
{pick.team.name}
Round {pick.round}