interface NewsItem { date: string; year: string; title: string; desc: string; } interface NewsSectionProps { title: string; items: NewsItem[]; } export default function NewsSection({ title, items }: NewsSectionProps) { return (

{title}

News

“云端智能 智领未来”

{items.map((item, index) => (
{item.date}
{item.year}

{item.title}

{item.desc}

))}
); }