Skip to content

Instantly share code, notes, and snippets.

@FrancisGregori
Created November 26, 2023 02:27
Show Gist options
  • Save FrancisGregori/8484072da2af945557bcdb3e50d2732c to your computer and use it in GitHub Desktop.
Save FrancisGregori/8484072da2af945557bcdb3e50d2732c to your computer and use it in GitHub Desktop.
'use client';
import { ReactNode } from 'react';
import { SessionProvider } from 'next-auth/react';
export default function Providers({ children }: { children: ReactNode }) {
return <SessionProvider>{children}</SessionProvider>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment