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 { MDBContainer, MDBTable, MDBTableHead, MDBTableBody, MDBBadge, MDBBtn } from 'mdb-react-ui-kit';
3
4
function App() {
5
return (
6
<MDBContainer fluid>
7
<section>
8
<div className='shadow-4 rounded-5 overflow-hidden'>
9
<MDBTable>
10
<MDBTableHead light>
11
<tr>
12
<th>Name</th>
13
<th>Title</th>
14
<th>Status</th>
15
<th>Position</th>
16
<th>Actions</th>
17
</tr>
18
</MDBTableHead>
19
<MDBTableBody style={{ verticalAlign: 'middle' }}>
20
<tr>
21
<td>
22
<div className='d-flex align-items-center'>
23
<img
24
src='https://mdbootstrap.com/img/new/avatars/8.jpg'
25
alt=''
26
style={{ width: '45px', height: '45px' }}
27
className='rounded-circle'
28
/>
29
<div className='ms-3'>
30
<p className='fw-bold mb-1'>John Doe</p>
31
<p className='text-muted mb-0'>john.doe@gmail.com</p>
32
</div>
33
</div>
34
</td>
35
<td>
36
<p className='fw-normal mb-1'>Software engineer</p>
37
<p className='text-muted mb-0'>IT department</p>
38
</td>
39
<td>
40
<MDBBadge light color='success' pill>
41
Active
42
</MDBBadge>
43
</td>
44
<td>Senior</td>
45
<td>
46
<MDBBtn className='fw-bold' color='link' rounded size='sm' rippleColor='dark'>
47
Edit
48
</MDBBtn>
49
</td>
50
</tr>
51
<tr>
52
<td>
53
<div className='d-flex align-items-center'>
54
<img
55
src='https://mdbootstrap.com/img/new/avatars/6.jpg'
56
className='rounded-circle'
57
alt=''
58
style={{ width: '45px', height: '45px' }}
59
/>
60
<div className='ms-3'>
61
<p className='fw-bold mb-1'>Alex Ray</p>
62
<p className='text-muted mb-0'>alex.ray@gmail.com</p>
63
</div>
64
</div>
65
</td>
66
<td>
67
<p className='fw-normal mb-1'>Consultant</p>
68
<p className='text-muted mb-0'>Finance</p>
69
</td>
70
<td>
71
<MDBBadge light color='primary' pill>
72
Onboarding
73
</MDBBadge>
74
</td>
75
<td>Junior</td>
76
<td>
77
<MDBBtn className='fw-bold' color='link' rounded size='sm' rippleColor='dark'>
78
Edit
79
</MDBBtn>
80
</td>
81
</tr>
82
<tr>
83
<td>
84
<div className='d-flex align-items-center'>
85
<img
86
src='https://mdbootstrap.com/img/new/avatars/7.jpg'
87
className='rounded-circle'
88
alt=''
89
style={{ width: '45px', height: '45px' }}
90
/>
91
<div className='ms-3'>
92
<p className='fw-bold mb-1'>Kate Hunington</p>
93
<p className='text-muted mb-0'>kate.hunington@gmail.com</p>
94
</div>
95
</div>
96
</td>
97
<td>
98
<p className='fw-normal mb-1'>Designer</p>
99
<p className='text-muted mb-0'>UI/UX</p>
100
</td>
101
<td>
102
<MDBBadge light color='warning' pill>
103
Awaiting
104
</MDBBadge>
105
</td>
106
<td>Senior</td>
107
<td>
108
<MDBBtn className='fw-bold' color='link' rounded size='sm' rippleColor='dark'>
109
Edit
110
</MDBBtn>
111
</td>
112
</tr>
113
</MDBTableBody>
114
</MDBTable>
115
</div>
116
</section>
117
</MDBContainer>
118
);
119
}
120
121
export default App;
122
Console errors: 0