rsnext/test/integration/preload-viewport/pages/index.js
Joe Haddad b3170d2648
Format missed files (#7464)
* Format missed files

* Remove unnecessary rule

* Fix type error
2019-05-29 18:19:32 -07:00

29 lines
627 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>
)
}