forked from halitbatur/react-pizza-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
54 lines (54 loc) · 1012 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
43
44
45
46
47
48
49
50
51
52
53
54
{"pizzas":
[
{ "id": 1,
"topping": "Plain",
"size": "Small",
"vegetarian": true
},
{ "id": 2,
"topping": "Pepperoni",
"size": "Small",
"vegetarian": false
},
{ "id": 3,
"topping": "Mushroom",
"size": "Small",
"vegetarian": true
},
{ "id": 4,
"topping": "Sausage",
"size": "Small",
"vegetarian": false
},
{ "id": 5,
"topping": "Bacon",
"size": "Medium",
"vegetarian": false
},
{ "id": 6,
"topping": "Spinach",
"size": "Medium",
"vegetarian": true
},
{ "id": 7,
"topping": "Black Olive",
"size": "Medium",
"vegetarian": true
},
{ "id": 8,
"topping": "Pineapple",
"size": "Medium",
"vegetarian": true
},
{ "id": 9,
"topping": "Salami",
"size": "Large",
"vegetarian": false
},
{ "id": 10,
"topping": "Chicken",
"size": "Large",
"vegetarian": true
}
]
}