-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
75 lines (75 loc) · 1.55 KB
/
data.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
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
const Data = [
{
id: 1,
patient: "Bobbie Martel",
appointment: "Dec 12th at 2:30pm",
isCompleted: false,
doctor: "Prof. Akari Yoshino",
reason: "Check-up",
},
{
id: 2,
patient: "Kristie Keegan",
appointment: "Dec 13th at 1:30pm",
isCompleted: true,
doctor: "Dr. Alena Mangold",
reason: "Emergency",
},
{
id: 3,
patient: "Erik Neumann",
appointment: "Dec 14th at 3:00pm",
isCompleted: false,
doctor: "Dr. Lian Kurzmann",
reason: "Follow-up",
},
{
id: 4,
patient: "Boyd Regenbogen",
appointment: "Dec 12th at 2:30pm",
isCompleted: false,
doctor: "Prof. Dr. Benjamin Daley",
reason: "Check-up",
},
{
id: 5,
patient: "Darla Mueller",
appointment: "Dec 13th at 1:30pm",
isCompleted: true,
doctor: "MD. Eva Manz",
reason: "Routine",
},
{
id: 6,
patient: "Dot Kuntz",
appointment: "Dec 14th at 3:00pm",
isCompleted: false,
doctor: "Prof. Dr. Theodor Jackson",
reason: "Walkin",
},
{
id: 7,
patient: "Ella Chester",
appointment: "Dec 14th at 3:00pm",
isCompleted: false,
doctor: "Dr. Nari Chung",
reason: "Emergency",
},
{
id: 8,
patient: "Elisa Daniel",
appointment: "Dec 14th at 3:00pm",
isCompleted: false,
doctor: "Ass. Prof. Dr. Wulf Gabler",
reason: "Routine",
},
{
id: 9,
patient: "Timmy Donaldson",
appointment: "Dec 12th at 2:30pm",
isCompleted: false,
doctor: "Prof. Dr. Benjamin Daley",
reason: "Check-up",
},
];
export default Data;