-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
16 lines (16 loc) · 1.19 KB
/
data.js
File metadata and controls
16 lines (16 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = function (){
return {
products: [
{id: 1, name: "Kayak", category: "Watersports", description: "A boat from 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 siaze 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 Cup", 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: []
}
}