next.js/test/e2e/app-dir/app-rendering/app/layout.js
layout.js11 lines171 B
export default function Root({ children }) {
  return (
    <html>
      <head>
        <title>Hello</title>
      </head>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN