rsnext/test/integration/basic/pages/development-logs/index.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
186 B
JavaScript

import Link from 'next/link'
export default function IndexPage () {
return (
<div>
<Link href='/about' prefetch>
<a>To About Page</a>
</Link>
</div>
)
}