"use client"; import { SessionProvider } from "next-auth/react"; import type { ReactNode } from "react"; export default function Providers({ children }: { children: ReactNode }) { return {children}; }