@sharyn/next-auth

```jsx import { useUser } from '@sharyn/next-auth'

Usage no npm install needed!

<script type="module">
  import sharynNextAuth from 'https://cdn.skypack.dev/@sharyn/next-auth';
</script>

README

@sharyn/next-auth

import { useUser } from '@sharyn/next-auth'

const App = () => {
  const { user, isUserLoading, session } = useUser()

  if (!user) return null

  return {user.name}
}