import { Container, Col, Row } from 'react-bootstrap'; import NewsItem from '../molecules/NewsItem'; function NewsSection() { const newsFeeds = [ { title: 'Feed 1', text: 'This is the first feed', imageSrc: '/placeholder1.jpg', feedHref: '' }, { title: 'Feed 2', text: 'This is the second feed', imageSrc: '/placeholder1.jpg', feedHref: '' }, { title: 'Feed 3', text: 'This is the third feed', imageSrc: '/placeholder1.jpg', feedHref: ''} ]; return (

Tin tức

{Array.from(newsFeeds).map((feed, idx) => ( ))}
); } export default NewsSection;