import Link from 'next/link' import { useState } from 'react' export default () => { const [href, setHref] = useState('/first') return (
Scroll to another to {href}

Hi 👋

to /another
) }