mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 15:03:37 +00:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
// Hook to get user data in a more convenient way
|
|
import { useSession } from 'next-auth/react'
|
|
|
|
export const useCurrentUser = () => {
|
|
const session = useSession()
|
|
return session.data?.user
|
|
}
|