mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
"use client";
|
|
|
|
import { useSession as useNextAuthSession } from "next-auth/react";
|
|
|
|
export default function useSessionStatus() {
|
|
const { status } = useNextAuthSession();
|
|
return status;
|
|
}
|