import React from 'react'; import { Link } from 'react-router-dom'; import { useAuth } from '../../hooks/useAuth'; import { ProfileMenu } from './ProfileMenu'; export function Header() { const { user } = useAuth(); return (
Logo Leiturama
{user ? ( ) : ( <> Entrar Cadastrar Escola )}
); }