mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 04:03:31 +00:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
import { useSession } from 'next-auth/react'
|
|
|
|
export const useCurrentRole = () => {
|
|
const session = useSession()
|
|
|
|
return session.data?.user?.role
|
|
}
|