Files
gridpilot.gg/apps/website/components/leagues/ChampionshipStandingsList.tsx
2026-01-18 23:24:30 +01:00

15 lines
299 B
TypeScript

import { Stack } from '@/ui/Stack';
import { ReactNode } from 'react';
interface ChampionshipStandingsListProps {
children: ReactNode;
}
export function ChampionshipStandingsList({ children }: ChampionshipStandingsListProps) {
return (
<Stack gap={3}>
{children}
</Stack>
);
}