-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCategoryData.js
126 lines (124 loc) · 2.1 KB
/
CategoryData.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// API props : amount=number, type=multiple or type=boolean , category=CategoryID, difficulty=easy/medium/hard
// sample API link : https://opentdb.com/api.php?amount=10&category=9&difficulty=medium&type=multiple
export default [
{
ID: 1,
CategoryName: "General Knowledge",
CategoryID: 9,
},
{
ID: 2,
CategoryName: "Entertainment: Books",
CategoryID: 10,
},
{
ID: 3,
CategoryName: "Entertainment: Film",
CategoryID: 11,
},
{
ID: 4,
CategoryName: "Entertainment: Music",
CategoryID: 12,
},
{
ID: 5,
CategoryName: "Entertainment: Musicals & Theatres",
CategoryID: 13,
},
{
ID: 6,
CategoryName: "Entertainment: Television",
CategoryID: 14,
},
{
ID: 7,
CategoryName: "Entertainment: Video Games",
CategoryID: 15,
},
{
ID: 8,
CategoryName: "Entertainment: Board Games",
CategoryID: 16,
},
{
ID: 9,
CategoryName: "Science & Nature",
CategoryID: 17,
},
{
ID: 10,
CategoryName: "Science: Computers",
CategoryID: 18,
},
{
ID: 11,
CategoryName: "Science: Mathematics",
CategoryID: 19,
},
{
ID: 12,
CategoryName: "Mythology",
CategoryID: 20,
},
{
ID: 13,
CategoryName: "Sports",
CategoryID: 21,
},
{
ID: 14,
CategoryName: "Geography",
CategoryID: 22,
},
{
ID: 15,
CategoryName: "History",
CategoryID: 23,
},
{
ID: 16,
CategoryName: "Politics",
CategoryID: 24,
},
{
ID: 17,
CategoryName: "Art",
CategoryID: 25,
},
{
ID: 18,
CategoryName: "Celebrities",
CategoryID: 26,
},
{
ID: 19,
CategoryName: "Animals",
CategoryID: 27,
},
{
ID: 20,
CategoryName: "Vehicles",
CategoryID: 28,
},
{
ID: 21,
CategoryName: "Entertainment: Comics",
CategoryID: 29,
},
{
ID: 22,
CategoryName: "Science: Gadgets",
CategoryID: 30,
},
{
ID: 23,
CategoryName: "Entertainment: Japanese Anime & Manga",
CategoryID: 31,
},
{
ID: 24,
CategoryName: "Entertainment: Cartoon & Animations",
CategoryID: 32,
},
];