I have smooth scrolling set up for a button which works on chrome and safari but its does not smooth scroll on safari. How to make this work? Here is the code.
const topOfPage = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}