// Component con để hiển thị hình ảnh sản phẩm và gallery const ProductImageGallery = ({ images, mainImage, setMainImage, productName, fromPage, isMobile, showCart }) => { const { Modal } = ReactBootstrap; const [showModal, setShowModal] = useState(false); const handleShow = () => setShowModal(true); const handleClose = () => setShowModal(false); if (!images || images.length === 0) { return (
No image available