File size: 469 Bytes
95b5a04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import PropTypes from 'prop-types';
import { useEffect } from 'react';
// ==============================|| NAVIGATION SCROLL TO TOP ||============================== //
export default function NavigationScroll({ children }) {
useEffect(() => {
window.scrollTo({
top: 0,
left: 0,
behavior: 'smooth'
});
}, []);
return children || null;
}
NavigationScroll.propTypes = { children: PropTypes.oneOfType([PropTypes.node, PropTypes.any]) };
|