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
1
1
xxxxxxxxxx
1
import React, { useState } from "react";
2
import {
3
MDBContainer,
4
MDBNavbar,
5
MDBNavbarBrand,
6
MDBNavbarToggler,
7
MDBNavbarNav,
8
MDBNavbarItem,
9
MDBNavbarLink,
10
MDBIcon,
11
MDBRow,
12
MDBCol,
13
MDBInput,
14
MDBBtn,
15
MDBDropdownMenu,
16
MDBDropdownItem,
17
MDBDropdown,
18
MDBDropdownToggle,
19
MDBCollapse,
20
} from "mdb-react-ui-kit";
21
22
export default function App() {
23
const [showNav, setShowNav] = useState(false);
24
25
return (
26
<>
27
<link
28
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
29
rel="stylesheet"
30
/>
31
<MDBNavbar expand="lg" light bgColor="light" className="pb-4">
32
<MDBNavbarToggler
33
type="button"
34
aria-expanded="false"
35
aria-label="Toggle navigation"
36
onClick={() => setShowNav(!showNav)}
37
>
38
<MDBIcon icon="bars" fas />
39
</MDBNavbarToggler>
40
41
<MDBContainer className="d-flex justify-content-center">
42
<MDBRow>
43
<MDBCol size="12">
44
<MDBNavbarBrand
45
href="#"
46
className="d-flex justify-content-center mb-3"
47
>
48
Navbar
49
</MDBNavbarBrand>
50
</MDBCol>
51
<MDBCol size="12">
52
<MDBCollapse navbar show={showNav}>
53
<MDBNavbarNav className="d-flex justify-content-center">
54
<MDBNavbarItem>
55
<MDBNavbarLink active aria-current="page" href="#">
56
<MDBIcon fas icon="plus-circle pe-2" />Post
57
</MDBNavbarLink>
58
</MDBNavbarItem>
59
<MDBNavbarItem>
60
<MDBNavbarLink href="#">
61
<MDBIcon fas icon="bell pe-2" />Alerts
62
</MDBNavbarLink>
63
</MDBNavbarItem>
64
<MDBNavbarItem>
65
<MDBNavbarLink href="#">
66
<MDBIcon fas icon="heart pe-2" />Trips
67
</MDBNavbarLink>
68
</MDBNavbarItem>
69
</MDBNavbarNav>
70
</MDBCollapse>
71
</MDBCol>
72
</MDBRow>
73
</MDBContainer>
74
</MDBNavbar>
75
</>
76
77
);
78
}
79
Console errors: 0