import { Container, Col, Row } from 'react-bootstrap'; import StoreItem from '../molecules/StoreItem'; function StoreSection() { const stores = [ { storeName: 'Store 1', address: 'Address 1', imageSrc: '/placeholder2.jpg' }, { storeName: 'Store 2', address: 'Address 2', imageSrc: '/placeholder2.jpg' }, { storeName: 'Store 3', address: 'Address 3', imageSrc: '/placeholder2.jpg' }, ]; return (

Các chi nhánh

Đây là các chi nhánh đang mở, chưa mở, sắp mở và có thể là sẽ không mở {Array.from(stores).map((store, idx) => ( ))}
); } export default StoreSection;