"use client"; import type { Session } from "next-auth"; import { SessionProvider } from "next-auth/react"; type Props = { children: React.ReactNode; session?: Session; }; export const AuthProvider = ({ children, session }: Props) => { return {children}; };