Answers for "navigation scroll react"

0

navigation scroll react

import { Link } from "react-scroll";


// somewhere in your markup
<Link to="test1" spy={true} smooth={true} offset={50} duration={500}>Test</Link>

// somewhere else in your markup. This is where it will scroll to.
<div id="test1">...</div>
Posted by: Guest on September-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language