next.js/test/integration/build-output/fixtures/with-parallel-routes/app/root-page/layout.js
layout.js10 lines142 B
export default function Layout({ children, header, footer }) {
  return (
    <>
      {header}
      {children}
      {footer}
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN