You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
494 B

import React, { Component } from 'react';
import './index.scss';
export default function Gallery(props) {
return(
<>
{
window.innerWidth > 1000 ?
<section className="product-gallery d-flex flex-column">
<div className="product-gallery__top">
</div>
<div className="product-gallery__list d-flex">
<div></div>
<div></div>
<div></div>
</div>
</section> : null
}
</>
);
}