Skip to content

Instantly share code, notes, and snippets.

@rahulmore01
Created July 11, 2024 08:48
Show Gist options
  • Save rahulmore01/88c95df90536064a3a461ee22507ef86 to your computer and use it in GitHub Desktop.
Save rahulmore01/88c95df90536064a3a461ee22507ef86 to your computer and use it in GitHub Desktop.
root layout next js, for next auth
import "../styles/globals.css";
import AuthProvider from "@/utility/nextauth-session-provider";
export default async function RootLayout({ children }) {
return (
<>
<html lang="en" suppressHydrationWarning>
<head />
<body>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment