import "./footer.css"; import { Link } from "react-router-dom"; import { useAuth } from "../../api/Auth"; function Footer() { const { user } = useAuth(); const { logout } = useAuth(); return ( ); } export default Footer;