rsnext/test/integration/basic/pages/development-logs/link-with-no-prefetch.js
Natalie Marleny 06876f1be0 fix: Warn when user specifies prefetch option as true (#8233)
* Warn when user specifies prefetch option as `true`

* Update index.test.js
2019-08-12 00:26:25 -04:00

11 lines
180 B
JavaScript

import Link from 'next/link'
export default function NoPrefetchPage () {
return (
<div>
<Link href='/about'>
<a>No prefetch</a>
</Link>
</div>
)
}