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 from 'react';
2
import {
3
MDBContainer,
4
MDBRow,
5
MDBCard,
6
MDBCol,
7
MDBDatepicker,
8
MDBSelectDeprecated,
9
MDBCardBody,
10
MDBBtn,
11
MDBIcon,
12
MDBChart,
13
MDBCardHeader,
14
MDBCardFooter,
15
} from 'mdb-react-ui-kit';
16
17
function App() {
18
return (
19
<MDBContainer fluid>
20
<MDBRow className='justify-content-center'>
21
<MDBCol md='8'>
22
<section>
23
<MDBCard>
24
<MDBCardHeader className='py-3'>
25
<MDBRow>
26
<MDBCol size='6'>
27
<p className='text-uppercase small mb-2'>
28
<strong>USERS</strong>
29
</p>
30
<h5 className='mb-0'>
31
<strong>23 456</strong>
32
<small className='text-success ms-2'>
33
<MDBIcon fas icon='arrow-up' size='sm' className='pe-1' />
34
13,48%
35
</small>
36
</h5>
37
</MDBCol>
38
39
<MDBCol size='6' className='text-end'>
40
<MDBBtn type='button' className='mt-2'>
41
Details
42
</MDBBtn>
43
</MDBCol>
44
</MDBRow>
45
</MDBCardHeader>
46
47
<MDBCardBody>
48
<MDBRow>
49
<MDBCol md='8' className='mb-4'>
50
<MDBChart
51
type='bar'
52
data={{
53
labels: ['Desktop', 'Mobile', 'Tablet'],
54
datasets: [
55
{
56
label: 'Users',
57
data: [510, 653, 255],
58
},
59
{
60
label: 'Page views',
61
data: [1251, 1553, 1355],
62
backgroundColor: '#94DFD7',
63
borderColor: '#94DFD7',
64
},
65
],
66
}}
67
options={{
68
scales: {
69
y: {
70
stacked: false,
71
ticks: {
72
beginAtZero: true,
73
},
74
},
75
x: {
76
stacked: false,
77
},
78
},
79
}}
80
/>
81
</MDBCol>
82
83
<MDBCol md='4' className=' mb-4'>
84
<MDBChart
85
type='pie'
86
data={{
87
labels: ['Monday', 'Tuesday', 'Wednesday'],
88
datasets: [
89
{
90
label: 'Traffic',
91
data: [2112, 2343, 2545],
92
backgroundColor: [
93
'rgba(63, 81, 181, 0.5)',
94
'rgba(77, 182, 172, 0.5)',
95
'rgba(66, 133, 244, 0.5)',
96
],
97
},
98
],
99
}}
100
/>
101
102
<MDBChart
103
type='doughnut'
104
data={{
105
labels: ['Monday', 'Tuesday', 'Wednesday'],
106
datasets: [
107
{
108
label: 'Traffic',
109
data: [2112, 2343, 2545],
110
backgroundColor: [
111
'rgba(233, 30, 99, 0.5)',
112
'rgba(66, 73, 244, 0.4)',
113
'rgba(66, 133, 244, 0.2)',
114
],
115
},
116
],
117
}}
118
/>
119
</MDBCol>
120
</MDBRow>
121
</MDBCardBody>
122
123
<MDBCardFooter className='py-4'>
124
<MDBRow>
125
<MDBCol md='6' className='mb-4 mb-md-0'>
126
<MDBSelectDeprecated
127
label='Date'
128
data={[
129
{ text: 'Today', value: 1 },
130
{ text: 'Yesterday', value: 2 },
131
{ text: 'Last 7 days', value: 3, selected: true },
132
{ text: 'Last 28 days', value: 4 },
133
{ text: 'Last 90 days', value: 5 },
134
]}
135
/>
136
</MDBCol>
137
<MDBCol md='6'>
138
<MDBDatepicker inputLabel='Date' defaultValue='Custom date' />
139
</MDBCol>
140
</MDBRow>
141
</MDBCardFooter>
142
</MDBCard>
143
</section>
144
</MDBCol>
145
</MDBRow>
146
</MDBContainer>
147
);
148
}
149
150
export default App;
151
Console errors: 0