-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopulate.js
49 lines (47 loc) · 1.45 KB
/
populate.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
44
45
46
47
48
49
const populate = [
{
"name": "Benz E300",
"price": "4000",
"description": "Benz c300 2025, awesome functionality",
"group": "vehicles"
},
{
"name": "Infinix Hot 40i",
"price": "2600",
"description": "Newly release infinix hot 40i",
"group": "gadgets"
},
{
"name": "Black Christian Dior Jeans",
"price": "1000",
"description": "Latest Dior quality dior jeans",
"group": "clothings",
"inStock": false
},
{
"name": "LG Refrigerator",
"price": "2500",
"description": "400 x 700 LG refrigerator, from 0 deg to -100deg in 20mins",
"group": "home and kitchen equipments"
},
{
"name": "Ankara Lace",
"price": "600",
"description": "Modern Ankara Lace, designed by Nike",
"group": "clothings",
"inStock": "false"
},
{
"name": "Amazon Azure Server",
"price": "12000",
"description": "Amazon Azure Server, 64gb ram, speed 17Ghz",
"group": "gadgets"
},
{
"name": "Dell XPS",
"price": "7000",
"description": "12th Generation PC, 16gb ram, 2gb SSD",
"group": "gadgets"
}
]
export default populate;