UNPKG

@nadeshikon/plugin-nextjs

Version:
15 lines (11 loc) 247 B
import Link from 'next/link' const Page = () => ( <> <h3 id="hello">Hello</h3> <Link href="/nav"> <a id="to-nav">to nav</a> </Link> </> ) Page.getInitialProps = () => ({ hello: 'world' }) export default Page