1 import { useContext } from "react"; 2 import AuthContext from "app/contexts/JWTAuthContext"; 3 4 const useAuth = () => useContext(AuthContext); 5 export default useAuth;