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