next.js/test/e2e/app-dir/segment-cache/no-prefetch/app/with-loading/page.tsx
page.tsx13 lines315 B
import { connection } from 'next/server'
import { SuspendForeverOnClient } from './client'

export default async function Page() {
  await connection()
  return (
    <main>
      {/* Block on the client to make sure that the loading boundary works correctly. */}
      <SuspendForeverOnClient />
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN