next.js/test/e2e/app-dir/unauthorized/basic/app/layout.js
layout.js17 lines318 B
export default function Layout({ children }) {
  return (
    <html>
      <head />
      <body>
        <header>
          <nav id="layout-nav">Navbar</nav>
        </header>
        <main>{children}</main>
        <footer>
          <p id="layout-footer">Footer</p>
        </footer>
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN