react-server675fbba4
react-serverfilesexamplesfile-routerpages(root).layout.tsx
examples/file-router/pages/(root).layout.tsxtsx219 Be61df231
export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body suppressHydrationWarning>{children}</body>
    </html>
  );
}