import Card from '@/components/ui/Card'; import type { RaceWithResultsDTO } from '@core/testing-support'; interface LatestResultsSidebarProps { results: RaceWithResultsDTO[]; } export default function LatestResultsSidebar({ results }: LatestResultsSidebarProps) { if (!results.length) { return null; } return (

Latest results

); }