import { teamColor } from '../utils' interface Props { acronym: string number: number colour: string } export function DriverCell({ acronym, number, colour }: Props) { return (
{acronym} {number}
) }