next.js/test/e2e/app-dir/app-a11y/app/layout.js
layout.js29 lines659 B
import Link from 'next/link'

export default function Layout({ children }) {
  return (
    <html>
      <body>
        {children}
        <hr />
        <Link href="/page-with-h1" id="page-with-h1">
          /page-with-h1
        </Link>
        <br />
        <Link href="/page-with-title" id="page-with-title">
          /page-with-title
        </Link>
        <br />
        <Link href="/noop-layout/page-1" id="noop-layout-page-1">
          /noop-layout/page-1
        </Link>
        <br />
        <Link href="/noop-layout/page-2" id="noop-layout-page-2">
          /noop-layout/page-2
        </Link>
        <br />
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN