next.js/test/e2e/app-dir/cache-components/app/cases/static_async/page.tsx
page.tsx15 lines389 B
import { getSentinelValue } from '../../getSentinelValue'

export default async function Page() {
  return (
    <>
      <p>
        This page is made up of entirely static content in an async function.
      </p>
      <p>With PPR this page should be entirely static.</p>
      <p>Without PPR this page should be static.</p>
      <div id="page">{getSentinelValue()}</div>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN