import { useAuth } from "../../hooks"; import "./NavBar.scss"; import { logout } from "../../api"; import { Link } from "react-router-dom/"; export default function NavBar() { const { user } = useAuth(); console.log(user); const onLogout = () => { logout().then((res) => { if (res === "Ok") { window.location.reload(); } }); }; return ( ); }