import Card from '@/components/ui/Card'; type RaceWithResults = { raceId: string; track: string; car: string; winnerName: string; scheduledAt: string | Date; }; interface LatestResultsSidebarProps { results: RaceWithResults[]; } export default function LatestResultsSidebar({ results }: LatestResultsSidebarProps) { if (!results.length) { return null; } return (

Latest results

); }