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