next.js/test/e2e/app-dir/metadata/app/title-template/extra/inner/page.tsx
page.tsx20 lines304 B
import Link from 'next/link'

export default function Page() {
  return (
    <>
      <Link href="/" id="to-index">
        to /
      </Link>
      <br />
      {/* <Link href="/basic" id="to-basic">
        to /basic
      </Link> */}
    </>
  )
}

export const metadata = {
  title: 'Inner Page',
}
Quest for Codev2.0.0
/
SIGN IN