Scroll to top on navigation
[MAILPOET-2129]
This commit is contained in:
12
assets/js/src/common/scroll_to_top.jsx
Normal file
12
assets/js/src/common/scroll_to_top.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { useEffect } from 'react';
|
||||
import { withRouter } from 'react-router-dom';
|
||||
|
||||
const ScrollToTop = ({ children, location: { pathname } }) => {
|
||||
useEffect(() => {
|
||||
window.scrollTo(0, 0);
|
||||
}, [pathname]);
|
||||
|
||||
return children || null;
|
||||
};
|
||||
|
||||
export default withRouter(ScrollToTop);
|
Reference in New Issue
Block a user