mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-11 06:11:15 +00:00
9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
"use client";
|
|
|
|
import { useSession } from "next-auth/react";
|
|
|
|
export function useCurrentUser() {
|
|
const { data: session } = useSession();
|
|
return session?.user;
|
|
}
|