next.js/test/e2e/app-dir/app-rendering/app/isr-multiple/layout.js
layout.js21 lines348 B
import { use } from 'react'

async function getData() {
  return {
    message: 'hello from layout',
    now: Date.now(),
  }
}

export default function GspLayout(props) {
  const data = use(getData())

  return (
    <>
      <h1 id="layout-message">{data.message}</h1>
      <p id="layout-now">{data.now}</p>
      {props.children}
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN