next.js/test/integration/prerender/pages/index/index.js
index.js19 lines280 B
import Link from 'next/link'

export async function getStaticProps() {
  return {
    props: { world: 'nested index' },
  }
}

export default ({ world }) => {
  return (
    <>
      <p>hello {world}</p>
      <Link href="/" id="home">
        to home
      </Link>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN