next.js/test/e2e/app-dir/middleware-rewrite-catchall-priority-with-parallel-route/app/layout.jsx
layout.jsx13 lines207 B
import React from 'react'

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