15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
import { Stack } from '@/ui/primitives/Stack';
|
|
import { ReactNode } from 'react';
|
|
|
|
interface FriendsListProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function FriendsList({ children }: FriendsListProps) {
|
|
return (
|
|
<Stack gap={2}>
|
|
{children}
|
|
</Stack>
|
|
);
|
|
}
|