next.js/test/integration/custom-routes/pages/hello.js
hello.js15 lines226 B
import Link from 'next/link'

const Page = () => (
  <>
    <h3 id="hello">Hello</h3>
    <Link href="/nav" id="to-nav">
      to nav
    </Link>
  </>
)

Page.getInitialProps = () => ({ hello: 'world' })

export default Page
Quest for Codev2.0.0
/
SIGN IN