import React, { useEffect, useRef, useContext } from "react";
import AuthContext from "../../contex/auth-context";
const authContext = useContext(AuthContext);
console.log(authContext.authenticated);
<button onClick={authContext.login}>Log in</button>