HTML
xxxxxxxxxx
1
<!DOCTYPE html>
2
<html lang="en">
3
4
<head>
5
<meta charset="utf-8">
6
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
<meta name="theme-color" content="#000000">
8
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
9
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
10
<title>React App</title>
11
</head>
12
13
<body>
14
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.2.0/css/all.css" />
15
<link rel="stylesheet" href="https://static.fontawesome.com/css/fontawesome-app.css" />
16
<noscript>You need to enable JavaScript to run this app.</noscript>
17
<div id="root"></div>
18
</body>
19
20
</html>
21
SCSS
1
1
JS (TypeScript)
xxxxxxxxxx
1
import React, { Component } from "react";
2
import { MDBDataTable } from "mdbreact";
3
4
const data = {
5
columns: [
6
{
7
label: 'Name',
8
field: 'name',
9
sort: 'asc',
10
width: 150
11
},
12
{
13
label: 'Position',
14
field: 'position',
15
sort: 'asc',
16
width: 270
17
},
18
{
19
label: 'Office',
20
field: 'office',
21
sort: 'asc',
22
width: 200
23
},
24
{
25
label: 'Age',
26
field: 'age',
27
sort: 'asc',
28
width: 100
29
},
30
{
31
label: 'Start date',
32
field: 'date',
33
sort: 'asc',
34
width: 150
35
},
36
{
37
label: 'Salary',
38
field: 'salary',
39
sort: 'asc',
40
width: 100
41
}
42
],
43
rows: [
44
{
45
name: 'Tiger Nixon',
46
position: 'System Architect',
47
office: 'Edinburgh',
48
age: '61',
49
date: '2011/04/25',
50
salary: '$320'
51
},
52
{
53
name: 'Garrett Winters',
54
position: 'Accountant',
55
office: 'Tokyo',
56
age: '63',
57
date: '2011/07/25',
58
salary: '$170'
59
},
60
{
61
name: 'Ashton Cox',
62
position: 'Junior Technical Author',
63
office: 'San Francisco',
64
age: '66',
65
date: '2009/01/12',
66
salary: '$86'
67
},
68
{
69
name: 'Cedric Kelly',
70
position: 'Senior Javascript Developer',
71
office: 'Edinburgh',
72
age: '22',
73
date: '2012/03/29',
74
salary: '$433'
75
},
76
{
77
name: 'Airi Satou',
78
position: 'Accountant',
79
office: 'Tokyo',
80
age: '33',
81
date: '2008/11/28',
82
salary: '$162'
83
},
84
{
85
name: 'Brielle Williamson',
86
position: 'Integration Specialist',
87
office: 'New York',
88
age: '61',
89
date: '2012/12/02',
90
salary: '$372'
91
},
92
{
93
name: 'Herrod Chandler',
94
position: 'Sales Assistant',
95
office: 'San Francisco',
96
age: '59',
97
date: '2012/08/06',
98
salary: '$137'
99
},
100
{
101
name: 'Rhona Davidson',
102
position: 'Integration Specialist',
103
office: 'Tokyo',
104
age: '55',
105
date: '2010/10/14',
106
salary: '$327'
107
},
108
{
109
name: 'Colleen Hurst',
110
position: 'Javascript Developer',
111
office: 'San Francisco',
112
age: '39',
113
date: '2009/09/15',
114
salary: '$205'
115
},
116
{
117
name: 'Sonya Frost',
118
position: 'Software Engineer',
119
office: 'Edinburgh',
120
age: '23',
121
date: '2008/12/13',
122
salary: '$103'
123
},
124
{
125
name: 'Jena Gaines',
126
position: 'Office Manager',
127
office: 'London',
128
age: '30',
129
date: '2008/12/19',
130
salary: '$90'
131
},
132
{
133
name: 'Quinn Flynn',
134
position: 'Support Lead',
135
office: 'Edinburgh',
136
age: '22',
137
date: '2013/03/03',
138
salary: '$342'
139
},
140
{
141
name: 'Charde Marshall',
142
position: 'Regional Director',
143
office: 'San Francisco',
144
age: '36',
145
date: '2008/10/16',
146
salary: '$470'
147
},
148
{
149
name: 'Haley Kennedy',
150
position: 'Senior Marketing Designer',
151
office: 'London',
152
age: '43',
153
date: '2012/12/18',
154
salary: '$313'
155
},
156
{
157
name: 'Tatyana Fitzpatrick',
158
position: 'Regional Director',
159
office: 'London',
160
age: '19',
161
date: '2010/03/17',
162
salary: '$385'
163
},
164
{
165
name: 'Michael Silva',
166
position: 'Marketing Designer',
167
office: 'London',
168
age: '66',
169
date: '2012/11/27',
170
salary: '$198'
171
},
172
{
173
name: 'Paul Byrd',
174
position: 'Chief Financial Officer (CFO)',
175
office: 'New York',
176
age: '64',
177
date: '2010/06/09',
178
salary: '$725'
179
},
180
{
181
name: 'Gloria Little',
182
position: 'Systems Administrator',
183
office: 'New York',
184
age: '59',
185
date: '2009/04/10',
186
salary: '$237'
187
}
188
]
189
};
190
191
class App extends Component {
192
render() {
193
return (
194
<MDBDataTable
195
striped
196
bordered
197
hover
198
data={data}
199
/>
200
);
201
}
202
}
203
204
export default App;
205
206
207
208
209
Console errors: 0