-
Notifications
You must be signed in to change notification settings - Fork 2
/
dummy.ts
102 lines (101 loc) · 1.62 KB
/
dummy.ts
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { Dish } from "./store/types";
export const dishes: Dish[] = [
{
id: "1",
name: "fries",
category: "Starter",
price: 25,
info: "Appropiate for two",
},
{
id: "2",
name: "chilly potato",
category: "Starter",
price: 20,
info: "Appropiate for one",
},
{
id: "3",
name: "pasta",
category: "Starter",
price: 20,
info: "Appropiate for one",
},
{
id: "4",
name: "Chicken wings",
category: "Starter",
price: 20,
info: "Only one person",
},
{
id: "5",
name: "Chicken Gravy",
category: "Main Course",
price: 100,
info: "Two person",
},
{
id: "6",
name: "Mutton Gravy",
category: "Main Course",
price: 100,
info: "Two person",
},
{
id: "7",
name: "Paneer Gravy",
category: "Main Course",
price: 200,
info: "Two person",
},
{
id: "8",
name: "Fried Rice",
category: "Main Course",
price: 200,
info: "Two person",
},
{
id: "9",
name: "Ice Cream",
category: "Dessert",
price: 20,
info: "One person",
},
{
id: "10",
name: "Cake",
category: "Dessert",
price: 20,
info: "One person",
},
{
id: "11",
name: "Choco lava cake",
category: "Dessert",
price: 20,
info: "One person",
},
{
id: "12",
name: "Beer",
category: "Drinks",
price: 20,
info: "One person",
},
{
id: "13",
name: "Wine",
category: "Drinks",
price: 200,
info: "One person",
},
{
id: "14",
name: "Mocktails",
category: "Drinks",
price: 200,
info: "One person",
},
];