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

15 lines
276 B
TypeScript

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