rsnext/test/integration/preload-viewport/pages/index.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

29 lines
628 B
JavaScript

import Link from 'next/link'
import { useState } from 'react'
export default () => {
const [href, setHref] = useState('/first')
return (
<div>
<a href="#scroll-to-me" id="scroll-to-another">
Scroll to another
</a>
<button onClick={() => setHref('/another')}>Click me</button>
<Link href={href}>
<a>to {href}</a>
</Link>
<div
style={{
height: 10000,
width: 20,
background: 'orange',
}}
/>
<p id="scroll-to-me">Hi 👋</p>
<Link href="/another">
<a>to /another</a>
</Link>
</div>
)
}