import React,{useEffect} from 'react'
import { useLocation } from "react-router-dom";
import { Helmet } from "react-helmet";
const ScrollToTop = () => {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo({
top: 0,
behavior: 'smooth'});
}, [pathname]);
return null;
}
export default ScrollToTop
Back to Directory