Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Created December 28, 2021 14:54
Show Gist options
  • Save skolhustick/18f6114ad1f92fdc8f63bae5ada5fe9a to your computer and use it in GitHub Desktop.
Save skolhustick/18f6114ad1f92fdc8f63bae5ada5fe9a to your computer and use it in GitHub Desktop.
import { SessionProvider } from 'next-auth/react'
export default function App ({
Component,
pageProps: { session, ...pageProps }
}) {
return (
<SessionProvider session={session}>
<Component {...pageProps} />
</SessionProvider>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment