WhisperNet / components /providers.tsx
bonesmasher's picture
Upload 56 files
abc1805 verified
raw
history blame contribute delete
207 Bytes
"use client";
import { SessionProvider } from "next-auth/react";
export function Providers({ children }: { children: React.ReactNode }) {
return <SessionProvider>{children}</SessionProvider>;
}