File size: 2,999 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
import React from 'react'
import Product from '../Product/Product'
import './ProductList.css'
function ProductList() {
return (
<div className="productList">
<div className="productList__row">
{/* Product */}
<Product
id={12320}
title="The Lean Startup"
price={10}
rating={4.5}
image="https://images-na.ssl-images-amazon.com/images/I/51Zymoq7UnL._AC_SY400_.jpg"
/>
<Product
id={12320}
title="The Lean Startup"
price={10}
rating={4.5}
image="https://images-na.ssl-images-amazon.com/images/I/51Zymoq7UnL._AC_SY400_.jpg"
/>
<Product
id={12321}
title="Apple Watch Series 3 (GPS, 42mm) - Space Grey Aluminium Case with Black Sport Band"
price={20}
rating={5}
image="https://images-eu.ssl-images-amazon.com/images/I/41RLXO5JUhL._AC_SX368_.jpg"
/>
<Product
id={12334}
title="Amazon Echo (3rd generation) | Smart speaker with Alexa, Charcoal Fabric"
price={98.99}
rating={3.5}
image="https://media.very.co.uk/i/very/P6LTG_SQ1_0000000071_CHARCOAL_SLf?$300x400_retinamobilex2$"
/>
</div>
<div className="productList__row">
{/* Product */}
<Product
id={12321}
title="Apple Watch Series 3 (GPS, 42mm) - Space Grey Aluminium Case with Black Sport Band"
price={20}
rating={5}
image="https://images-eu.ssl-images-amazon.com/images/I/41RLXO5JUhL._AC_SX368_.jpg"
/>
<Product
id={12320}
title="The Lean Startup"
price={10}
rating={4.5}
image="https://images-na.ssl-images-amazon.com/images/I/51Zymoq7UnL._AC_SY400_.jpg"
/>
<Product
id={12320}
title="The Lean Startup"
price={10}
rating={4.5}
image="https://images-na.ssl-images-amazon.com/images/I/51Zymoq7UnL._AC_SY400_.jpg"
/>
<Product
id={12334}
title="Amazon Echo (3rd generation) | Smart speaker with Alexa, Charcoal Fabric"
price={98.99}
rating={3.5}
image="https://media.very.co.uk/i/very/P6LTG_SQ1_0000000071_CHARCOAL_SLf?$300x400_retinamobilex2$"
/>
</div>
</div>
)
}
export default ProductList
|