15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
import { Stack } from '@/ui/Stack';
|
|
import { ReactNode } from 'react';
|
|
|
|
interface JoinRequestListProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function JoinRequestList({ children }: JoinRequestListProps) {
|
|
return (
|
|
<Stack gap={3}>
|
|
{children}
|
|
</Stack>
|
|
);
|
|
}
|