@sharyn/next-auth
v0.1.0
Published
```jsx import { useUser } from '@sharyn/next-auth'
Downloads
2
Readme
@sharyn/next-auth
import { useUser } from '@sharyn/next-auth'
const App = () => {
const { user, isUserLoading, session } = useUser()
if (!user) return null
return {user.name}
}