next.js/test/integration/getserversideprops-preview/pages/to-index.js
to-index.js16 lines231 B
import Link from 'next/link'

export function getServerSideProps() {
  return { props: {} }
}

export default function () {
  return (
    <main>
      <Link href="/" id="to-index">
        To Index
      </Link>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN