mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 16:55:55 +00:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
|
"use client";
|
||
|
|
||
|
import { SessionProvider } from "next-auth/react";
|
||
|
|
||
|
interface ClientProviderProps {
|
||
|
children: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function ClientProvider({ children }: ClientProviderProps) {
|
||
|
return <SessionProvider>{children}</SessionProvider>;
|
||
|
}
|