Quest for Codev2.0.0
/
SIGN IN
next.js/test/e2e/app-dir/instant-navigation-testing-api/fixtures/default/app/full-prefetch-target/page.tsx
page.tsx15 lines293 B
import { connection } from 'next/server'

export default async function FullPrefetchTargetPage() {
  await connection()

  return (
    <div>
      <h1>Full Prefetch Target</h1>
      <div data-testid="full-prefetch-content">
        Full prefetch content loaded
      </div>
    </div>
  )
}