7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { useContext } from "react";
|
|
import { AuthContext } from "/providers/AuthProvider";
|
|
|
|
export function useIsAuthenticated(): boolean {
|
|
return useContext(AuthContext).isAuthenticated;
|
|
}
|