"use client"; import { SessionProvider } from "next-auth/react"; type Props = { children?: React.ReactNode; }; export default function NextAuthProvider({ children }: Props) { return {children}; };