forked from tanner/qotnews
Settle on serif font, add scroll to top component
This commit is contained in:
16
webclient/src/ScrollToTop.js
Normal file
16
webclient/src/ScrollToTop.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import { BrowserRouter as Router, Route, Link, withRouter } from 'react-router-dom';
|
||||
|
||||
class ScrollToTop extends React.Component {
|
||||
componentDidUpdate(prevProps) {
|
||||
if (this.props.location.pathname !== prevProps.location.pathname) {
|
||||
window.scrollTo(0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
export default withRouter(ScrollToTop);
|
Reference in New Issue
Block a user