Files
gridpilot.gg/apps/website/components/leagues/ChampionshipStandingsList.tsx
2026-01-15 19:55:46 +01:00

15 lines
306 B
TypeScript

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