next.js/test/e2e/middleware-base-path/app/pages/other.js
other.js13 lines199 B
import Link from 'next/link'

export default function Other() {
  return (
    <div>
      <h1>Other page</h1>
      <Link href="/" id="go-to-home">
        Go to home
      </Link>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN