next.js/test/e2e/app-dir/interception-route-prefetch-cache/app/layout.tsx
layout.tsx14 lines217 B
import Link from 'next/link'

export default function RootLayout({ children }) {
  return (
    <html>
      <head />
      <body>
        <Link href="/">home</Link>
        {children}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN