Files
reflector/www/app/lib/useSessionStatus.ts
Igor Loskutov 11ed585cea self-review-fix
2025-09-02 13:04:43 -04:00

9 lines
191 B
TypeScript

"use client";
import { useSession as useNextAuthSession } from "next-auth/react";
export default function useSessionStatus() {
const { status } = useNextAuthSession();
return status;
}