change images, update readme
This commit is contained in:
@@ -2,12 +2,10 @@ import React from 'react'
|
||||
import {Product} from '../'
|
||||
|
||||
const ProductList = ({products, compare}) =>
|
||||
<div>
|
||||
<div className="row mt-3">
|
||||
{products.map(product =>
|
||||
<Product key={product.id} product={product} compare={compare} />
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="row mt-3">
|
||||
{products.map(product =>
|
||||
<Product key={product.id} product={product} compare={compare} />
|
||||
)}
|
||||
</div>;
|
||||
|
||||
export default ProductList
|
||||
|
||||
Reference in New Issue
Block a user