This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
parandum/src/RouteChangeTracker.js

14 lines
322 B
JavaScript

import { withRouter } from "react-router-dom";
export default withRouter(function RouteChangeTracker({ history }) {
history.listen((location, action) => {
if (location.pathname === "/login") {
document.body.style.overflow = "hidden";
} else {
document.body.style.overflow = "auto";
}
});
return null;
})