blob: 7e13f798bab9788b8abd924d519afa12b2545a44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
"use client";
/**
* Centralized client-side auth utilities.
* This module re-exports next-auth/react functions to allow for easier
* future migration to a different auth provider.
*/
export { SessionProvider, signIn, signOut, useSession } from "next-auth/react";
export type { Session } from "next-auth";
|