import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" export function News() { const newsItems = [ { title: "Children trapped 900 feet in air when chairlift cable snaps in Pakistan's northwest", source: "CNN", }, { title: "Jonathan Taylor landing spots: Colts give All-Pro RB permission to seek trade; Dolphins interested?", source: "CBS Sports", }, { title: "China's Baidu reports 15% revenue growth, beating expectations", source: "CNBC", }, ] return ( News
{newsItems.map((item, i) => (

{item.title}

{item.source}

))}
) }