xxxxxxxxxx
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8" />
5
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
<meta name="viewport" content="width=device-width, initial-scale=1" />
7
<meta name="theme-color" content="#000000" />
8
<meta
9
name="description"
10
content="Web site created using create-react-app"
11
/>
12
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
<link
14
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
15
rel="stylesheet"
16
/>
17
<link
18
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
19
rel="stylesheet"
20
/>
21
22
<!--
23
manifest.json provides metadata used when your web app is installed on a
24
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
25
-->
26
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
27
<!--
28
Notice the use of %PUBLIC_URL% in the tags above.
29
It will be replaced with the URL of the `public` folder during the build.
30
Only files inside the `public` folder can be referenced from the HTML.
31
32
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
33
work correctly both with client-side routing and a non-root public URL.
34
Learn how to configure a non-root public URL by running `npm run build`.
35
-->
36
<title>MDBReact5 Template App</title>
37
</head>
38
<body>
39
<noscript>You need to enable JavaScript to run this app.</noscript>
40
<div id="root"></div>
41
<!--
42
This HTML file is a template.
43
If you open it directly in the browser, you will see an empty page.
44
45
You can add webfonts, meta tags, or analytics to this file.
46
The build step will place the bundled scripts into the <body> tag.
47
48
To begin the development, run `npm start` or `yarn start`.
49
To create a production bundle, use `npm run build` or `yarn build`.
50
-->
51
</body>
52
</html>
53
xxxxxxxxxx
1
body {
2
margin: 0;
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
-webkit-font-smoothing: antialiased;
5
-moz-osx-font-smoothing: grayscale;
6
}
7
8
code {
9
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
10
monospace;
11
}
12
xxxxxxxxxx
1
import React, { useState } from 'react';
2
import {
3
MDBContainer,
4
MDBRow,
5
MDBCard,
6
MDBCardHeader,
7
MDBCol,
8
MDBDatepicker,
9
MDBSelectDeprecated,
10
MDBCardBody,
11
MDBCardFooter,
12
MDBIcon,
13
MDBTable,
14
MDBTableHead,
15
MDBTableBody,
16
MDBChart,
17
MDBBtn,
18
MDBBadge,
19
} from 'mdb-react-ui-kit';
20
21
function App() {
22
const [datepickerValue, setDatepickerValue] = useState('');
23
24
return (
25
<MDBContainer fluid>
26
<MDBRow className='justify-content-center'>
27
<MDBCol md='10'>
28
<section>
29
<MDBCard>
30
<MDBCardHeader className='py-3'>
31
<MDBRow>
32
<MDBCol size='6'>
33
<p className='text-uppercase small mb-2'>
34
<strong>USERS</strong>
35
</p>
36
<h5 className='mb-0'>
37
<strong>23 456</strong>
38
<small className='text-success ms-2'>
39
<MDBIcon fas size='sm' icon='arrow-up' className='pe-1' />
40
13,48%
41
</small>
42
</h5>
43
</MDBCol>
44
45
<MDBCol size='6' className='text-end'>
46
<MDBBtn type='button' className='mt-2'>
47
Details
48
</MDBBtn>
49
</MDBCol>
50
</MDBRow>
51
</MDBCardHeader>
52
53
<MDBCardBody>
54
<MDBRow>
55
<MDBCol md='8' className='mb-4'>
56
<MDBTable hover>
57
<MDBTableHead>
58
<tr>
59
<th>Country</th>
60
<th>Sales</th>
61
<th>Value</th>
62
<th>Purchased?</th>
63
</tr>
64
</MDBTableHead>
65
<MDBTableBody>
66
<tr>
67
<td>Norway</td>
68
<td>$72.63</td>
69
<td>8</td>
70
<td>
71
<MDBBadge color='success'>Yes</MDBBadge>
72
</td>
73
</tr>
74
<tr>
75
<td>Barbados</td>
76
<td>$81.52</td>
77
<td>4</td>
78
<td>
79
<MDBBadge color='success'>Yes</MDBBadge>
80
</td>
81
</tr>
82
<tr>
83
<td>France</td>
84
<td>$76.02</td>
85
<td>3</td>
86
<td>
87
<MDBBadge color='danger'>No</MDBBadge>
88
</td>
89
</tr>
90
<tr>
91
<td>Egypt</td>
92
<td>$53.21</td>
93
<td>6</td>
94
<td>
95
<MDBBadge color='danger'>No</MDBBadge>
96
</td>
97
</tr>
98
<tr>
99
<td>South Korea</td>
100
<td>$3.93</td>
101
<td>6</td>
102
<td>
103
<MDBBadge color='success'>Yes</MDBBadge>
104
</td>
105
</tr>
106
<tr>
107
<td>Finland</td>
108
<td>$31.58</td>
109
<td>9</td>
110
<td>
111
<MDBBadge color='danger'>No</MDBBadge>
112
</td>
113
</tr>
114
<tr>
115
<td>Mayotte</td>
116
<td>$11.20</td>
117
<td>5</td>
118
<td>
119
<MDBBadge color='danger'>No</MDBBadge>
120
</td>
121
</tr>
122
<tr>
123
<td>Netherlands</td>
124
<td>$75.94</td>
125
<td>7</td>
126
<td>
127
<MDBBadge color='warning'>Pending</MDBBadge>
128
</td>
129
</tr>
130
<tr>
131
<td>Slovenia</td>
132
<td>$48.54</td>
133
<td>10</td>
134
<td>
135
<MDBBadge color='success'>Yes</MDBBadge>
136
</td>
137
</tr>
138
<tr>
139
<td>Spain</td>
140
<td>$64.32</td>
141
<td>5</td>
142
<td>
143
<MDBBadge color='success'>Yes</MDBBadge>
144
</td>
145
</tr>
146
<tr>
147
<td>Italy</td>
148
<td>$52.15</td>
149
<td>7</td>
150
<td>
151
<MDBBadge color='warning'>Pending</MDBBadge>
152
</td>
153
</tr>
154
</MDBTableBody>
155
</MDBTable>
156
</MDBCol>
157
158
<MDBCol md='4' className='mb-4'>
159
<MDBChart
160
type='radar'
161
data={{
162
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
163
datasets: [
164
{
165
label: 'Traffic',
166
data: [2112, 2343, 2545, 3423, 2365, 1985, 987],
167
backgroundColor: [
168
'rgba(63, 81, 181, 0.5)',
169
'rgba(77, 182, 172, 0.5)',
170
'rgba(66, 133, 244, 0.5)',
171
'rgba(156, 39, 176, 0.5)',
172
'rgba(233, 30, 99, 0.5)',
173
'rgba(66, 73, 244, 0.4)',
174
'rgba(66, 133, 244, 0.2)',
175
],
176
},
177
],
178
}}
179
/>
180
181
<MDBChart
182
type='polarArea'
183
data={{
184
labels: ['Monday', 'Tuesday', 'Wednesday'],
185
datasets: [
186
{
187
label: 'Traffic',
188
data: [2112, 2343, 2545],
189
backgroundColor: [
190
'rgba(63, 81, 181, 0.5)',
191
'rgba(77, 182, 172, 0.5)',
192
'rgba(66, 133, 244, 0.5)',
193
],
194
},
195
],
196
}}
197
/>
198
</MDBCol>
199
</MDBRow>
200
</MDBCardBody>
201
202
<MDBCardFooter className='py-4'>
203
<MDBRow>
204
<MDBCol md='6'>
205
<MDBSelectDeprecated
206
label='Date'
207
data={[
208
{ text: 'Today', value: 1, selected: true },
209
{ text: 'Yesterday', value: 2 },
210
{ text: 'Last 7 days', value: 3 },
211
{ text: 'Last 28 days', value: 4 },
212
{ text: 'Last 90 days', value: 5 },
213
]}
214
/>
215
</MDBCol>
216
217
<MDBCol md='6'>
218
<MDBDatepicker value={datepickerValue} setValue={setDatepickerValue} labelText='Date' />
219
</MDBCol>
220
</MDBRow>
221
</MDBCardFooter>
222
</MDBCard>
223
</section>
224
</MDBCol>
225
</MDBRow>
226
227
</MDBContainer>
228
);
229
}
230
231
export default App;
232
Console errors: 0