mirror of
https://github.com/beilunyang/moemail.git
synced 2026-05-06 20:02:52 +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>
|
|
)
|
|
}
|