import { ReactNode } from 'react'; import { Box } from './Box'; import { Surface } from './Surface'; export interface LeaderboardTableShellProps { children: ReactNode; } export const LeaderboardTableShell = ({ children }: LeaderboardTableShellProps) => { return ( {children} ); };