rsnext/examples/with-prefetching/components/Nav.js
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

47 lines
1.1 KiB
JavaScript

import Link from 'next/link'
import { useRouter } from 'next/router'
export default function Nav() {
const router = useRouter()
return (
<div className="root">
<h2>Default</h2>
<p>
Automatically prefetch pages in the background as soon the Link appears
in the view:
</p>
<Link href="/">
<a>Home</a>
</Link>{' '}
<Link href="/features">
<a>Features</a>
</Link>
<h2>Imperative</h2>
<p>Prefetch on onMouseEnter or on other events:</p>
<Link prefetch={false} href="/about">
<a
onMouseEnter={() => {
router.prefetch('/about')
console.log('prefetching /about!')
}}
>
About
</a>
</Link>
<h2>Disable</h2>
<p>Disable prefetching</p>
<Link prefetch={false} href="/contact">
<a>Contact</a>
</Link>
<style jsx>{`
.root {
border-bottom: 1px solid grey;
padding-bottom: 8px;
}
a {
margin-right: 10px;
}
`}</style>
</div>
)
}