react-server675fbba4
react-serverfilesexamplesbenchmarkpages(root).layout.jsx
examples/benchmark/pages/(root).layout.jsxjsx304 Bc65a987e
export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <head>
        <meta charSet="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>Benchmark</title>
      </head>
      <body>{children}</body>
    </html>
  );
}