import React, { ReactNode } from 'react'; import { Stack } from '@/ui/Stack'; interface ChampionshipStandingsListProps { children: ReactNode; } export function ChampionshipStandingsList({ children }: ChampionshipStandingsListProps) { return ( {children} ); }