forked from ultimatecourses/angular-basics-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
42 lines (42 loc) · 904 Bytes
/
db.json
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
{
"donuts": [
{
"id": "abc001",
"name": "Just Chocolate",
"icon": "just-chocolate",
"price": 119,
"promo": "limited",
"description": "For the pure chocoholic"
},
{
"id": "abc002",
"name": "Glazed Fudge",
"icon": "glazed-fudge",
"price": 129,
"promo": "new",
"description": "Sticky perfection"
},
{
"id": "abc003",
"name": "Caramel Swirl",
"icon": "caramel-swirl",
"price": 119,
"description": "Chocolate drizzled with caramel"
},
{
"id": "abc004",
"name": "Sour Supreme",
"icon": "sour-supreme",
"price": 149,
"promo": "new",
"description": "For the sour advocate"
},
{
"id": "abc005",
"name": "Zesty Lemon",
"icon": "zesty-lemon",
"price": 129,
"description": "Delicious lucious lemon"
}
]
}