next.js/test/e2e/app-dir/next-after-app/app/nodejs/layout.js
layout.js13 lines209 B
export const runtime = 'nodejs'

export default function AppLayout({ children }) {
  return (
    <html>
      <head>
        <title>after</title>
      </head>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN