forked from gnappo1/phase-1-mock-cc-ramen-rater-v2
-
Notifications
You must be signed in to change notification settings - Fork 470
/
db.json
44 lines (44 loc) · 1 KB
/
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
43
44
{
"ramens": [
{
"id": 1,
"name": "Shoyu Ramen",
"restaurant": "Nonono",
"image": "./assets/ramen/shoyu.jpg",
"rating": 7,
"comment": "Delish. Can't go wrong with a classic!"
},
{
"id": 2,
"name": "Naruto Ramen",
"restaurant": "Naruto",
"image": "./assets/ramen/naruto.jpg",
"rating": 10,
"comment": "My absolute fave!"
},
{
"id": 3,
"name": "Nirvana Shiromaru",
"restaurant": "Ippudo",
"image": "./assets/ramen/nirvana.jpg",
"rating": "7",
"comment": "Do buy the hype."
},
{
"id": 4,
"name": "Gyukotsu Ramen",
"restaurant": "Za-Ya Ramen",
"image": "./assets/ramen/gyukotsu.jpg",
"rating": 8,
"comment": "Good to the last drop."
},
{
"id": 5,
"name": "Kojiro Red Ramen",
"restaurant": "Ramen-Ya",
"image": "./assets/ramen/kojiro.jpg",
"rating": 6,
"comment": "Perfect for a cold night."
}
]
}