Files
gridpilot.gg/apps/website/ui/RankingList.tsx
2026-01-15 17:12:24 +01:00

15 lines
261 B
TypeScript

import React, { ReactNode } from 'react';
import { Stack } from './Stack';
interface RankingListProps {
children: ReactNode;
}
export function RankingList({ children }: RankingListProps) {
return (
<Stack gap={3}>
{children}
</Stack>
);
}