'use client'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Stack } from '@/ui/primitives/Stack'; import { TrendingUp } from 'lucide-react'; 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} ); }