change images, update readme

This commit is contained in:
Raymond
2018-07-05 16:41:28 +01:00
parent eeecbb54ec
commit 4f97c49d2f
19 changed files with 3861 additions and 2811 deletions

View File

@@ -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