2
0
Files
bot/apps/builder/services/user.ts
Baptiste Arnaud 54a641b819 Add Dashboard
2021-12-06 15:58:45 +01:00

8 lines
208 B
TypeScript

import { User } from '@typebot/prisma'
import { useSession } from 'next-auth/react'
export const useUser = (): User | undefined => {
const { data } = useSession()
return data?.user as User | undefined
}