HTML
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
SCSS
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
JS (TypeScript)
xxxxxxxxxx
1
import React 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
MDBDatatable
20
} from 'mdb-react-ui-kit';
21
22
function App() {
23
const dataSessions = {
24
labels: ['Desktop', 'Mobile', 'Tablet'],
25
datasets: [
26
{
27
label: 'Traffic',
28
data: [3230, 4531, 1832],
29
backgroundColor: ['rgba(63, 81, 181, 0.5)', 'rgba(77, 182, 172, 0.5)', 'rgba(66, 133, 244, 0.5)'],
30
},
31
],
32
};
33
return (
34
<MDBContainer fluid>
35
<MDBRow className='justify-content-center'>
36
<MDBCol md='10'>
37
<section className='text-center'>
38
<MDBCard className='mb-4'>
39
<MDBCardBody>
40
<MDBRow>
41
<MDBCol md='6' className='mb-4'>
42
<MDBChart
43
type='line'
44
data={{
45
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday '],
46
datasets: [
47
{
48
label: 'Sales in $',
49
data: [2112, 2343, 2545, 3423, 2365, 1985, 987],
50
},
51
],
52
}}
53
/>
54
</MDBCol>
55
<MDBCol md='6' className='mb-4'>
56
<MDBChart
57
type='bar'
58
data={{
59
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday '],
60
datasets: [
61
{
62
label: 'Number of orders',
63
data: [21, 23, 25, 34, 23, 19, 9],
64
},
65
],
66
}}
67
/>
68
</MDBCol>
69
</MDBRow>
70
</MDBCardBody>
71
</MDBCard>
72
73
<MDBCard>
74
<MDBCardBody>
75
<MDBDatatable
76
search
77
striped
78
data={{
79
columns: ['Order ID', 'Customer', 'Date', 'Country', 'Status', 'Amount'],
80
rows: [
81
[1, 'Ezekiel Gibbs', '11-07-20', 'Anguilla', 'Paid', '$72.48'],
82
[2, 'Richard Fry', '22-06-20', 'Netherlands', 'Unpaid', '$19.88'],
83
[3, 'Forrest Gonzalez', '05-06-20', 'Slovenia', 'Unpaid', '$72.61'],
84
[4, 'Herrod Norman', '13-11-19', 'Slovakia', 'Paid', '$40.36'],
85
[5, 'Buckminster Richards', '11-11-20', 'Congo (Brazzaville)', 'Paid', '$58.45'],
86
[6, 'Conan Summers', '15-11-20', 'Saint Pierre and Miquelon', 'Paid', '$18.10'],
87
[7, 'Damon Collins', '21-06-20', 'Saint Vincent and The Grenadines', 'Paid', '$50.10'],
88
[8, 'Tyler Cobb', '02-04-21', 'Thailand', 'Unpaid', '$25.76'],
89
[9, 'Alvin Nunez', '20-08-21', 'Trinidad and Tobago', 'Unpaid', '$16.24'],
90
[10, 'Emerson Atkinson', '15-10-20', 'Syria', 'Paid', '$32.15'],
91
[11, 'Stewart Pratt', '29-03-20', 'Egypt', 'Unpaid', '$56.17'],
92
[12, 'Cooper Knowles', '01-07-20', 'Ukraine', 'Unpaid', '$47.89'],
93
[13, 'Jonah Pugh', '16-03-20', 'Heard Island and Mcdonald Islands', 'Unpaid', '$58.31'],
94
[14, 'Hedley Roy', '07-01-21', 'Cape Verde', 'Unpaid', '$11.55'],
95
[15, 'Elliott Rasmussen', '15-12-20', 'Liechtenstein', 'Paid', '$40.44'],
96
[16, 'Chandler Waters', '20-08-20', 'Israel', 'Paid', '$58.81'],
97
[17, 'Wayne Owen', '16-06-20', 'Lesotho', 'Unpaid', '$64.20'],
98
[18, 'Uriah Holloway', '12-03-20', 'Åland Islands', 'Paid', '$53.30'],
99
[19, 'Amery Bowman', '13-10-19', 'Egypt', 'Paid', '$63.97'],
100
[20, 'Charles Campbell', '04-11-19', 'Niger', 'Paid', '$60.03'],
101
[21, 'Mark Aguirre', '07-09-19', 'Indonesia', 'Unpaid', '$40.73'],
102
[22, 'Brady Cook', '09-04-21', 'Turkmenistan', 'Unpaid', '$69.43'],
103
[23, 'Evan Keith', '02-07-20', 'Botswana', 'Paid', '$66.74'],
104
[24, 'Hedley Chan', '11-12-19', 'Jamaica', 'Unpaid', '$65.58'],
105
[25, 'Chester Walker', '03-02-20', 'Congo, the Democratic Republic of the', 'Paid', '$62.13'],
106
[26, 'Allen Sheppard', '23-06-20', 'Zambia', 'Unpaid', '$20.62'],
107
[27, 'Garrison Larson', '24-01-20', 'United States Minor Outlying Islands', 'Paid', '$36.99'],
108
[28, 'Blake Stuart', '18-09-19', 'Argentina', 'Unpaid', '$32.14'],
109
[29, 'Isaac Morse', '10-08-20', 'Bahrain', 'Unpaid', '$62.92'],
110
[30, 'Maxwell Barton', '04-04-20', 'Djibouti', 'Paid', '$6.02'],
111
[31, 'Keegan Frazier', '03-11-19', 'Central African Republic', 'Unpaid', '$81.48'],
112
[32, 'Abraham Merritt', '30-07-20', 'Mali', 'Unpaid', '$28.72'],
113
[33, 'Matthew Vaughn', '17-03-21', 'Timor-Leste', 'Paid', '$81.75'],
114
[34, 'Dante Griffin', '15-12-19', 'Marshall Islands', 'Unpaid', '$33.71'],
115
[35, 'Zachary Stewart', '26-10-20', 'Korea, North', 'Unpaid', '$67.54'],
116
[36, 'Joshua Berg', '24-12-19', 'Palau', 'Unpaid', '$63.99'],
117
[37, 'Emery Flores', '05-07-21', 'Angola', 'Unpaid', '$26.70'],
118
[38, 'Tarik Dillon', '01-03-21', 'Canada', 'Unpaid', '$23.64'],
119
[39, 'Acton Blair', '05-08-20', 'Bhutan', 'Paid', '$68.23'],
120
[40, 'Edward Daniels', '08-01-21', 'Cayman Islands', 'Paid', '$10.66'],
121
[41, 'Austin Branch', '12-06-21', 'Bahamas', 'Paid', '$77.53'],
122
[42, 'Theodore Atkinson', '02-12-19', 'Saudi Arabia', 'Unpaid', '$58.21'],
123
[43, 'Fitzgerald Parsons', '09-04-21', 'Pitcairn Islands', 'Paid', '$68.61'],
124
[44, 'Damian Morton', '24-06-20', 'Monaco', 'Paid', '$47.74'],
125
[45, 'Isaiah Berry', '20-11-20', 'Bulgaria', 'Paid', '$97.60'],
126
[46, 'Samson Morrison', '19-10-20', 'Belarus', 'Paid', '$10.67'],
127
[47, 'Xavier Soto', '28-03-20', 'Malaysia', 'Unpaid', '$81.85'],
128
[48, 'Cade Castaneda', '09-08-20', 'Egypt', 'Paid', '$36.72'],
129
[49, 'Ivan Burke', '12-02-21', 'Albania', 'Unpaid', '$60.59'],
130
[50, 'Galvin Christian', '16-10-19', 'Mayotte', 'Paid', '$94.28'],
131
[51, 'Emmanuel Stephenson', '07-01-21', 'South Sudan', 'Paid', '$99.83'],
132
[52, 'Lars Mills', '27-01-21', 'Faroe Islands', 'Paid', '$84.81'],
133
[53, 'Baxter Lopez', '15-07-21', 'Myanmar', 'Unpaid', '$99.65'],
134
[54, 'Amir Roman', '07-10-19', 'Northern Mariana Islands', 'Unpaid', '$27.39'],
135
[55, 'Cole Carey', '03-09-20', 'Anguilla', 'Paid', '$99.61'],
136
[56, 'Ishmael Davenport', '21-10-20', 'Tonga', 'Unpaid', '$81.94'],
137
[57, 'Amal Simon', '24-04-21', 'Palau', 'Paid', '$30.67'],
138
[58, 'Oren Finley', '17-03-20', 'Belgium', 'Paid', '$77.74'],
139
[59, 'Harding Blankenship', '10-12-20', 'Saint Martin', 'Paid', '$21.76'],
140
[60, 'Garrett Logan', '06-04-20', 'Antarctica', 'Unpaid', '$1.03'],
141
[61, 'Ross Wilkinson', '23-04-21', 'Niue', 'Paid', '$89.59'],
142
[62, 'Graiden Curtis', '14-05-21', 'Ecuador', 'Unpaid', '$1.42'],
143
[63, 'Vladimir David', '16-05-21', 'Norway', 'Unpaid', '$97.09'],
144
[64, 'Tad Navarro', '30-12-20', 'Sint Maarten', 'Paid', '$94.35'],
145
[65, 'Stephen Spencer', '11-12-20', 'Netherlands', 'Paid', '$55.91'],
146
[66, 'Salvador Hendricks', '24-11-20', 'Namibia', 'Unpaid', '$86.97'],
147
[67, 'Tiger Ryan', '29-09-19', 'Saint Pierre and Miquelon', 'Paid', '$52.88'],
148
[68, 'Louis Wiggins', '19-03-21', 'Grenada', 'Paid', '$90.50'],
149
[69, 'Gareth Fleming', '08-05-20', 'Martinique', 'Unpaid', '$80.61'],
150
[70, 'Fitzgerald Burris', '10-02-20', 'Burkina Faso', 'Unpaid', '$45.89'],
151
[71, 'Jackson Ingram', '08-08-21', 'Korea, North', 'Unpaid', '$5.06'],
152
[72, 'Porter Barr', '12-01-21', 'Bulgaria', 'Paid', '$22.54'],
153
[73, 'Harlan Mcintyre', '11-04-20', 'Togo', 'Paid', '$97.43'],
154
[74, 'Dalton Olsen', '26-02-20', 'Armenia', 'Unpaid', '$21.95'],
155
[75, 'Sawyer Harper', '25-05-21', 'France', 'Unpaid', '$91.47'],
156
[76, 'Dennis Vaughn', '20-09-20', 'Bolivia', 'Unpaid', '$45.12'],
157
[77, 'Peter Townsend', '11-04-21', "Côte D'Ivoire (Ivory Coast)", 'Paid', '$37.22'],
158
[78, 'Damian Shelton', '28-01-20', 'Samoa', 'Unpaid', '$92.59'],
159
[79, 'Hector Cooke', '12-01-20', 'Virgin Islands, United States', 'Unpaid', '$62.38'],
160
[80, 'Davis Evans', '23-10-20', 'Falkland Islands', 'Unpaid', '$8.31'],
161
[81, 'Keane Casey', '20-02-20', 'Saint Vincent and The Grenadines', 'Unpaid', '$24.31'],
162
[82, 'Conan Lucas', '20-02-20', 'Jersey', 'Paid', '$26.51'],
163
[83, 'Aladdin Johnson', '15-09-20', 'Ethiopia', 'Unpaid', '$41.53'],
164
[84, 'Buckminster Stevenson', '20-08-21', 'United Arab Emirates', 'Unpaid', '$1.22'],
165
[85, 'Zachery Powers', '15-07-21', 'Lesotho', 'Unpaid', '$9.17'],
166
[86, 'Griffin Knowles', '13-08-20', 'Libya', 'Paid', '$98.94'],
167
[87, 'Yuli Wheeler', '16-06-20', 'San Marino', 'Unpaid', '$78.86'],
168
[88, 'Garrett Bryant', '09-04-20', "Côte D'Ivoire (Ivory Coast)", 'Unpaid', '$70.97'],
169
[89, 'Hyatt Morse', '10-03-20', 'Jersey', 'Paid', '$84.41'],
170
[90, 'Bradley Dominguez', '11-06-20', 'Myanmar', 'Unpaid', '$97.88'],
171
[91, 'Hayes Norton', '25-10-20', 'Falkland Islands', 'Unpaid', '$48.18'],
172
[92, 'Zahir Sexton', '09-06-20', 'Somalia', 'Unpaid', '$6.06'],
173
[93, 'Burton Duffy', '12-07-20', 'Antarctica', 'Unpaid', '$56.97'],
174
[94, 'Vladimir House', '03-09-19', 'Mexico', 'Unpaid', '$12.91'],
175
[95, 'Timon Fletcher', '20-04-21', 'Somalia', 'Paid', '$52.38'],
176
[96, 'Bernard Love', '11-02-21', 'Japan', 'Unpaid', '$72.35'],
177
[97, 'Damian Gomez', '14-02-20', 'Antarctica', 'Paid', '$47.64'],
178
[98, 'Yuli Richards', '22-04-21', 'Morocco', 'Unpaid', '$65.10'],
179
[99, 'Yardley Rasmussen', '25-09-20', 'Bahamas', 'Paid', '$33.97'],
180
[100, 'Grant Cunningham', '13-03-20', 'Indonesia', 'Unpaid', '$44.85'],
181
],
182
}}
183
/>
184
</MDBCardBody>
185
</MDBCard>
186
</section>
187
</MDBCol>
188
</MDBRow>
189
</MDBContainer>
190
);
191
}
192
193
export default App;
194
Console errors: 0