Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created January 16, 2023 19:01
Show Gist options
  • Save SahanAmarsha/750cc311fce59b0f8d82547e1b57d8ff to your computer and use it in GitHub Desktop.
Save SahanAmarsha/750cc311fce59b0f8d82547e1b57d8ff to your computer and use it in GitHub Desktop.
useAuth hook
import {useContext} from "react";
import {AuthContext, IAuthContextType} from "../contexts/AuthContext";
const useAuth = () => useContext(AuthContext) as IAuthContextType;
export default useAuth;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment