rsnext/test/integration/preload-viewport/pages/index.js

30 lines
628 B
JavaScript
Raw Normal View History

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>
)
}