Files
test-product-compare-react/public/products.json

40 lines
986 B
JSON
Raw Permalink Normal View History

2017-07-24 20:47:24 +01:00
{
"products": [{
"id": "1",
"name": "Chair",
"image": "https://devitems.com/preview/furnish/img/product/1.jpg",
"price": "$39",
"colors": ["red", "green", "blue"],
2017-09-17 14:41:03 +01:00
"condition": "New",
"description": "Black chair"
2017-07-24 20:47:24 +01:00
},
{
"id": "2",
"name": "Lamp",
"image": "https://devitems.com/preview/furnish/img/product/2.jpg",
"price": "$319",
"colors": ["green", "blue"],
2017-09-17 14:41:03 +01:00
"condition": "Used",
"description": "Amazing lamp"
2017-07-24 20:47:24 +01:00
},
{
"id": "3",
"name": "Statue",
"image": "https://devitems.com/preview/furnish/img/product/3.jpg",
"price": "$239",
"colors": ["red"],
2017-09-17 14:41:03 +01:00
"condition": "Used",
"description": "Used Statue"
2017-07-24 20:47:24 +01:00
},
{
"id": "4",
"name": "Seat",
"image": "https://devitems.com/preview/furnish/img/product/4.jpg",
"price": "$239",
"colors": ["blue"],
2017-09-17 14:41:03 +01:00
"condition": "New",
"description": "Large Seat"
2017-07-24 20:47:24 +01:00
}
]
}