next.js/test/integration/router-hash-navigation/pages/index.js
index.js17 lines341 B
import Link from 'next/link'

export default function Page() {
  return (
    <div>
      <div style={{ height: '100vh' }} />
      <Link href="/" id="top-link">
        top
      </Link>
      <Link href="#section" id="section-link">
        section link
      </Link>
      <section id="section">section content</section>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN