Added auth to navbar to decide what should be displayed
This commit is contained in:
parent
36d782dfd1
commit
d48278acab
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
import React, { useState, useEffect } from "react";
|
||||
import { Button } from "./Button";
|
||||
import { Link } from "react-router-dom";
|
||||
import { useAuth } from "../auth/AuthProvider";
|
||||
import "./Navbar.css";
|
||||
import "@fortawesome/fontawesome-free/css/all.css";
|
||||
|
||||
|
@ -57,6 +58,11 @@ function Navbar() {
|
|||
Anleitung
|
||||
</Link>
|
||||
</li>
|
||||
{isLoggedIn ? (
|
||||
console.log("Eingeloggt")
|
||||
): (
|
||||
console.log("Nicht eingeloggt")
|
||||
)}
|
||||
<li>
|
||||
<Link
|
||||
to="/login"
|
||||
|
|
Loading…
Reference in a new issue