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