mirror of
https://github.com/beilunyang/moemail.git
synced 2025-09-26 19:41:22 +08:00
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
"use client"
|
|
|
|
import { SessionProvider } from "next-auth/react"
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<SessionProvider>
|
|
{children}
|
|
</SessionProvider>
|
|
)
|
|
}
|