import { Link } from 'react-router-dom'; import { useAuth } from './AuthContext'; export default function Header() { const { isAuthenticated, logout } = useAuth(); return (

MyApp

); }