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