'use client'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; import { Table, TableHead, TableBody, TableRow, TableHeaderCell } from '@/ui/Table'; import { TrendingUp } from 'lucide-react'; import { Icon } from '@/ui/Icon'; import { Surface } from '@/ui/Surface'; import { Stack } from '@/ui/Stack'; import React from 'react'; interface DriverTableProps { children: React.ReactNode; } export function DriverTable({ children }: DriverTableProps) { return ( Driver Rankings Performance metrics based on sanctioned race results Rank Competitor Nationality Skill Rating Victories {children}
); }