Progress so far
This commit is contained in:
13
app/context/auth-provider.tsx
Normal file
13
app/context/auth-provider.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import { SessionProvider } from 'next-auth/react'
|
||||
|
||||
export default function AuthProvider({ children }: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return (
|
||||
<SessionProvider>
|
||||
{children}
|
||||
</SessionProvider>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user