import React from 'react'; import { Stack } from './Stack'; import { Box } from './Box'; import { Heading } from './Heading'; import { Badge } from './Badge'; import { Grid } from './Grid'; import { StatItem } from './StatItem'; interface StandingsItemProps { leagueName: string; position: number; points: number; wins: number; racesCompleted: number; } export function StandingsItem({ leagueName, position, points, wins, racesCompleted, }: StandingsItemProps) { return ( {leagueName} P{position} ); }