mirror of
https://github.com/beilunyang/moemail.git
synced 2025-12-24 11:30:51 +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>
|
|
)
|
|
}
|