import { ExternalLink, Newspaper } from "lucide-react"; import { NewsArticle } from "@/lib/types"; import { formatDate } from "@/lib/utils"; interface NewsPanelProps { articles?: NewsArticle[]; } export function NewsPanel({ articles }: NewsPanelProps) { return (
No news articles found yet.
) : (
{article.headline}
{article.source} ยท {formatDate(article.published_at)}