import React from 'react'; import { Box } from './Box'; interface LeaderboardTableShellProps { columns: { key: string; label: string; align?: 'left' | 'center' | 'right'; width?: string; }[]; children: React.ReactNode; className?: string; } export function LeaderboardTableShell({ columns, children, className = '' }: LeaderboardTableShellProps) { return (
{columns.map((col) => ( ))} {children}
{col.label}
); }