-
Notifications
You must be signed in to change notification settings - Fork 3
/
data.js
31 lines (26 loc) · 1.57 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
module.exports = () => {
return {
products: [
{ id: 1, name: "Kayak", category: "Watersports", description: "A boat for one person", price: 275, image: 'kayak.jpg' },
{ id: 2, name: "Lifejacket", category: "Watersports",
description: "Protective and fashionable", price: 48.95, image: 'life-jack.jpg' },
{ id: 3, name: "Soccer Ball", category: "Soccer",
description: "FIFA-approved size and weight", price: 19.50, image: 'soccer-ball.jpg' },
{ id: 4, name: "Corner Flags", category: "Soccer",
description: "Give your playing field a professional touch",
price: 34.95, image: 'corner-flags.jpg' },
{ id: 5, name: "Stadium", category: "Soccer",
description: "Flat-packed 35,000-seat stadium", price: 79500, image: 'stadium.jpg' },
{ id: 6, name: "Thinking Cap", category: "Chess",
description: "Improve brain efficiency by 75%", price: 16, image: 'thinking-cap.jpg' },
{ id: 7, name: "Unsteady Chair", category: "Chess",
description: "Secretly give your opponent a disadvantage",
price: 29.95, image: 'unsteady-chair.jpg' },
{ 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 : []
}
}