Weird behavior with nested layouts
Unanswered
Dwarf Crocodile posted this in #help-forum
Dwarf CrocodileOP
Just started looking into nextjs, so everything is very new to me.
However, I have run into a strange issue, where using nested layouts always gives me an error.
This is my root layout:
If only this layout is present, everything works. If I nest another layout, such as:
I get the following error:
What am I doing wrong?
However, I have run into a strange issue, where using nested layouts always gives me an error.
This is my root layout:
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={cn(
"min-h-screen bg-background font-sans antialiased",
fontSans.variable,
)}
>
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
<TooltipProvider>
<main>{children}</main>
</TooltipProvider>
</ThemeProvider>
</body>
</html>
);
}If only this layout is present, everything works. If I nest another layout, such as:
export const metadata = {
title: "Next.js",
description: "Generated by Next.js",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return <section>{children}</section>;
}I get the following error:
Unhandled Runtime Error
Error: Hydration failed because the initial UI does not match what was rendered on the server.
See more info here: https://nextjs.org/docs/messages/react-hydration-error
Expected server HTML to contain a matching <div> in <body>. What am I doing wrong?