'use client'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Stack } from '@/ui/Stack'; import { Table, TableHead, TableBody, TableRow, TableHeaderCell } from '@/ui/Table'; import { TrendingUp } from 'lucide-react'; import { Card } from '@/ui/Card'; import { Icon } from '@/ui/Icon'; import React from 'react'; interface DriverTableProps { children: React.ReactNode; } export function DriverTable({ children }: DriverTableProps) { return ( Driver Rankings Top performers by skill rating # Driver Nationality Rating Wins {children}
); }