next.js/test/development/app-dir/cache-indicator/app/layout.tsx
layout.tsx16 lines348 B
import Link from 'next/link'
import { ReactNode } from 'react'
export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body>
        <nav>
          <Link href="/">/index</Link> |{' '}
          <Link href="/navigation">/navigation</Link>
        </nav>
        {children}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN