next.js/test/e2e/app-dir/root-layout-render-once/app/layout.js
layout.js17 lines289 B
import React from 'react'

export const revalidate = 0

let value = 0
export default function Layout({ children }) {
  return (
    <html>
      <head></head>
      <body>
        <div id="render-once">{children}</div>
        <p id="counter">{value++}</p>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN