website refactor
This commit is contained in:
14
apps/website/components/leagues/JoinRequestList.tsx
Normal file
14
apps/website/components/leagues/JoinRequestList.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React, { ReactNode } from 'react';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
|
||||
interface JoinRequestListProps {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
export function JoinRequestList({ children }: JoinRequestListProps) {
|
||||
return (
|
||||
<Stack gap={3}>
|
||||
{children}
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user