diff --git a/frontend/src/components/Navbar.js b/frontend/src/components/Navbar.js index 025bf89..0cf5889 100644 --- a/frontend/src/components/Navbar.js +++ b/frontend/src/components/Navbar.js @@ -1,7 +1,6 @@ import React, { useState, useEffect } from "react"; -import { Button } from "./Button"; import { Link } from "react-router-dom"; -import { useAuth } from "../auth/AuthProvider"; +import { useAuth, logout } from "../auth/AuthProvider"; import "./Navbar.css"; import "@fortawesome/fontawesome-free/css/all.css"; @@ -20,7 +19,7 @@ function Navbar() { } }; - const isLoggedIn = useAuth(); + const [isLoggedIn] = useAuth(); /* Shows the button after resizing the screen */ useEffect(() => { @@ -59,9 +58,25 @@ function Navbar() { {isLoggedIn ? ( - console.log("Eingeloggt") - ): ( - console.log("Nicht eingeloggt") +
  • + logout()} + > + Abmelden + +
  • + ) : ( +
  • + + Anmelden + +
  • )}
  • - {button && }