How to scroll inside scrollable block smoothly and do not scroll main window.
How to scroll inside scrollable block smoothly and do not scroll main window.
yourElementTargetRef.current.scrollIntoView({
behavior: "smooth",
block: "nearest",
});
Comments