d2321
2/23/2020 - 12:31 AM

Context Hook

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>