next.js/test/e2e/app-dir/javascript-urls/app/layout.tsx
layout.tsx13 lines253 B
import Link from 'next/link'

export default function Root({ children }: { children: React.ReactNode }) {
  return (
    <html>
      <body>
        <main>{children}</main>
        <Link href="/app/safe">Safe Page</Link>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN