// a card item represent a news in newsSection import { Card } from "react-bootstrap"; export default function NewsItem( {title, text, imageSrc, feedHref} ) { return ( {title} {text} Xem thêm ); }