-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNav.jsx
42 lines (36 loc) · 1.34 KB
/
Nav.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* React component for the navigation bar.
*
* This component displays the main navigation menu for the application, including links to
* different views, pages, or sections of the application. The component may include dynamic
* content, such as user information, notifications, or search functionality, and may interact
* with other components or services to provide a seamless user experience.
*/
import { useNavigate } from "react-router-dom"
import { logout } from '../Fire.jsx'
const Nav = ({ user }) => {
const navigate = useNavigate()
// This component displays the main navigation menu for the application when the user is logged in.
if (user) {
return (
<div className="Nav">
<button onClick={() => navigate("/")}>Home</button>
<br/>
<br/>
<p>{ user.displayName }</p>
<br/>
<button onClick={logout}>Logout</button>
</div>
)
}
// This component displays the main navigation menu for the application when the user is not logged in.
return (
<div className="Nav">
<button onClick={() => navigate("/")}>Home</button>
<br/>
<br/>
<button onClick={() => navigate("/sign-in")}>#</button>
</div>
)
}
export default Nav