import FeedEmptyState from '@/components/feed/FeedEmptyState'; import FeedItemCard from '@/components/feed/FeedItemCard'; interface FeedItemData { id: string; type: string; headline: string; body?: string; timestamp: string; formattedTime: string; ctaHref?: string; ctaLabel?: string; } interface FeedListProps { items: FeedItemData[]; } export default function FeedList({ items }: FeedListProps) { if (!items.length) { return ; } return (
{items.map(item => ( ))}
); }