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

40 lines
865 B
JSON
Raw Normal View History

2017-07-24 20:47:24 +01:00
{
"products": [{
"id": "1",
2018-07-05 16:41:28 +01:00
"name": "Cherry",
"image": "images/Cherry.png",
"price": "$1.99",
2017-07-24 20:47:24 +01:00
"colors": ["red", "green", "blue"],
2018-07-05 16:41:28 +01:00
"condition": "Fresh",
"description": "Two Cherries"
2017-07-24 20:47:24 +01:00
},
{
"id": "2",
2018-07-05 16:41:28 +01:00
"name": "Orange",
"image": "images/Orange.png",
"price": "$2.99",
2017-07-24 20:47:24 +01:00
"colors": ["green", "blue"],
2018-07-05 16:41:28 +01:00
"condition": "Frozen",
"description": "Giant Orange"
2017-07-24 20:47:24 +01:00
},
{
"id": "3",
2018-07-05 16:41:28 +01:00
"name": "Nuts",
"image": "images/Nuts.png",
"price": "$1.00",
2017-07-24 20:47:24 +01:00
"colors": ["red"],
2018-07-05 16:41:28 +01:00
"condition": "Frozen",
"description": "Mixed Nuts"
2017-07-24 20:47:24 +01:00
},
{
"id": "4",
2018-07-05 16:41:28 +01:00
"name": "Strawberry",
"image": "images/Strawberry.png",
"price": "$1.49",
2017-07-24 20:47:24 +01:00
"colors": ["blue"],
2018-07-05 16:41:28 +01:00
"condition": "Fresh",
"description": "Just Strawberry"
2017-07-24 20:47:24 +01:00
}
]
}