next.js/test/e2e/app-dir/app-css-pageextensions/app/layout.page.js
layout.page.js13 lines286 B
import '../styles/global.css'

export default function Root({ children }) {
  return (
    <html className="this-is-the-document-html">
      <head>
        <title>{`hello css`}</title>
      </head>
      <body className="this-is-the-document-body">{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN