-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataArray.js
84 lines (73 loc) · 1.49 KB
/
dataArray.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
76
77
78
79
80
81
82
83
84
export const tbSymptoms = [
`Persistant Cough`,
`Constant fatigue`,
`Weight Loss`,
`Fever`,
'Coughing of Blood',
'Night Sweats'
];
export const dengueSymptoms = [
`High Fever`,
`Severe Headache`,
`Pain behind the eyes`,
`Fatigue`,
`Vomiting`,
`Mild Bleeding`,
`Skin Rash`
];
export const diarrhoeaSymptoms = [
'loose watery stool',
'abdominal cramps',
'abdominal pain',
'fever',
'blood in the stool',
'mucus in the stool',
'bloating',
'nausea',
'urgent bowel movement',
];
export const jaundiceSymptoms = [
'Yellowish skin',
'Dark coloured urine',
'fever',
'vomiting',
'weakness',
];
export const malariaSymptoms = [
'Chills and sweats',
'fever',
'low BP',
'Poor Apetite',
];
export const diabetesSymptoms = [
'weight loss',
'blurred vision',
'skin infection',
'Increased Thirst',
'Extreme hunger',
];
export const pneumoniaSymptoms = [
'bloody cough',
'fever',
'shortness of breathe',
'chest pain',
];
export const kidneystoneSymptoms = [
'blood in urine',
'foul smell in urine',
'stomach ache',
'Frequeent urination',
];
export const covid19Symptoms = [
'Runny noes',
'sour throat',
'cough',
'difficulty in breathing',
'fever',
];
export const viralfeverSypmtoms = [
'headache',
'chills',
'muscle aches',
'fever',
];