next.js/test/e2e/app-dir/app-css/app/layout.js
layout.js14 lines292 B
import '../styles/global.css'
import './style.css'

export const revalidate = 0

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