-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
43 lines (43 loc) · 1.34 KB
/
data.js
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
module.exports = function () {
return {
products: [
{
id: 1, name: "Kayak", category: "Watersports",
description: "A boat for one person", price: 275
},
{
id: 2, name: "Lifejacket", category: "Watersports",
description: "Protective and fashionable", price: 48.95
},
{
id: 3, name: "Soccer Ball", category: "Soccer",
description: "FIFA-approved size and weight", price: 19.50
},
{
id: 4, name: "Corner Flags", category: "Soccer",
description: "Give your playing field a professional touch",
price: 34.95
},
{
id: 5, name: "Stadium", category: "Soccer",
description: "Flat-packed 35,000-seat stadium", price: 79500
},
{
id: 6, name: "Thinking Cap", category: "Chess",
description: "Improve brain efficiency by 75%", price: 16
},
{
id: 7, name: "Unsteady Chair", category: "Chess",
description: "Secretly give your opponent a disadvantage",
price: 29.95
},
{
id: 8, name: "Human Chess Board", category: "Chess",
description: "A fun game for the family", price: 75
},
{id: 9, name: "Bling Bling King", category: "Chess"},
{description: "Gold-plated, diamond-studded King", price: 1200}
],
orders: []
}
}