how to scroll to an element javascript react
import { scroller } from "react-scroll";
// excluded React component syntax...
  scrollToSection = () => {
    scroller.scrollTo("your_css_class_here", {
      duration: 800,
      delay: 0,
      smooth: "easeInOutQuart",
    });
  };
