next.js/test/e2e/app-dir/app-prefetch-static/app/layout.js
layout.js18 lines381 B
import Link from 'next/link'
export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        {children}

        <Link href="/se/static-prefetch" id="static-prefetch">
          Static Prefetch
        </Link>
        <Link href="/se/dynamic-area/slug" id="dynamic-prefetch">
          Dynamic Prefetch
        </Link>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN