import FeedEmptyState from '@/components/feed/FeedEmptyState'; import FeedItemCard from '@/components/feed/FeedItemCard'; import type { DashboardFeedItemSummaryViewModel } from '@/lib/view-models/DashboardOverviewViewModel'; interface FeedListProps { items: DashboardFeedItemSummaryViewModel[]; } export default function FeedList({ items }: FeedListProps) { if (!items.length) { return ; } return (
{items.map(item => ( ))}
); }