next.js/test/e2e/app-dir/use-cache-hanging/app/layout.tsx
layout.tsx21 lines478 B
import Link from 'next/link'
import { ReactNode } from 'react'
export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body>
        <nav>
          <Link href="/">Home</Link>
          {' | '}
          <Link href="/static">Static</Link>
          {' | '}
          <Link href="/runtime">Runtime</Link>
          {' | '}
          <Link href="/dynamic">Dynamic</Link>
        </nav>
        {children}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN