next.js/test/e2e/app-dir/app-rendering/app/ssr-only/slow/layout.js
layout.js25 lines458 B
import { use } from 'react'

let i

async function getData() {
  await new Promise((resolve) => setTimeout(resolve, 5000))
  return {
    message: 'hello from slow layout',
  }
}

export default function GsspLayout(props) {
  // TODO-APP: refactor this test page to `async function` instead.
  if (!i) {
    i = getData()
  }
  const data = use(i)
  return (
    <>
      <h1 id="slow-layout-message">{data.message}</h1>
      {props.children}
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN