UNPKG

@themesberg/volt-react-dashboard

Version:

Volt React Dashboard is a free and open source admin dashboard template powered by React.js and Bootstrap 5

15 lines (11 loc) 394 B
// Here are more informations about the scroll restoration of React Router // https://reactrouter.com/web/guides/scroll-restoration import { useEffect } from "react"; import { useLocation } from "react-router-dom"; export default () => { const { pathname } = useLocation(); useEffect(() => { window.scrollTo({ top: 0, left: 0, behavior: "auto" }); }, [pathname]); return null; }