next.js/test/e2e/app-dir/root-layout/app/(mpa-navigation)/with-parallel-routes/layout.js
layout.js17 lines287 B
// TODO-APP: remove after fixing filtering static flight data
export const revalidate = 0

export default function Root({ one, two }) {
  return (
    <html>
      <head>
        <title>Hello</title>
      </head>
      <body>
        {one}
        {two}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN