Skip to content

Instantly share code, notes, and snippets.

@rahulmore01
Created July 11, 2024 08:40
Show Gist options
  • Save rahulmore01/17ca789ab914b2a03e2ba5b00b0aebae to your computer and use it in GitHub Desktop.
Save rahulmore01/17ca789ab914b2a03e2ba5b00b0aebae to your computer and use it in GitHub Desktop.
next auth provider file
"use client";
import { SessionProvider } from "next-auth/react";
const AuthProvider = ({ children }) => {
return <SessionProvider>{children}</SessionProvider>;
};
export default AuthProvider;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment