Files
test-product-compare-react/public/products.json
2017-07-24 20:47:24 +01:00

36 lines
842 B
JSON

{
"products": [{
"id": "1",
"name": "Chair",
"image": "https://devitems.com/preview/furnish/img/product/1.jpg",
"price": "$39",
"colors": ["red", "green", "blue"],
"condition": "New"
},
{
"id": "2",
"name": "Lamp",
"image": "https://devitems.com/preview/furnish/img/product/2.jpg",
"price": "$319",
"colors": ["green", "blue"],
"condition": "Used"
},
{
"id": "3",
"name": "Statue",
"image": "https://devitems.com/preview/furnish/img/product/3.jpg",
"price": "$239",
"colors": ["red"],
"condition": "Used"
},
{
"id": "4",
"name": "Seat",
"image": "https://devitems.com/preview/furnish/img/product/4.jpg",
"price": "$239",
"colors": ["blue"],
"condition": "New"
}
]
}