next.js/test/e2e/app-dir/interception-route-prefetch-cache/app/layout-edge.tsx
layout-edge.tsx18 lines328 B
// this file is swapped in for the normal layout file in the edge runtime test

import Link from 'next/link'

export const runtime = 'edge'

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