Skip to content

Instantly share code, notes, and snippets.

@Kola92
Last active February 21, 2023 14:39
Show Gist options
  • Save Kola92/bd8197b9681c2bc57c629ecf92b9d081 to your computer and use it in GitHub Desktop.
Save Kola92/bd8197b9681c2bc57c629ecf92b9d081 to your computer and use it in GitHub Desktop.
Root Layout
// app/layout.js directory
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment