next.js/test/e2e/app-dir/duplicate-layout-components/app/(site)/(default)/solutions/layout.jsx
layout.jsx10 lines187 B
export default function SolutionsLayout({ children }) {
  return (
    <>
      <h1>Solutions Layout</h1>
      <main>{children}</main>
      <h1>Solutions Footer Test</h1>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN