UNPKG

redux-router-scroll-restoration

Version:
9 lines (7 loc) 183 B
const middleware = store => next => action => { if (action.type === '@@router/LOCATION_CHANGE') { window.scrollTo(0, 0) } return next(action) } module.exports = middleware