react-scroll-to-top-route
v1.0.4
Published
A reactJS component which scrolls user back to top when navigating between routes
Downloads
9
Maintainers
Readme
react-scroll-to-top-route
A ReactJS route component that scrolls users back to the top of the page when navigating around with the react router.
Example
import ScrollToTopRoute from "react-scroll-to-top-route";
// Example usage
const Routes = () =>
<Switch>
<ScrollToTopRoute
path="/example-but-with-scrolling"
render={() => <p>Normal route with scrolling to top when navigating.</p>}
/>
<Route
path="/example"
render={() => <p>Normal route.</p>}
/>
</Switch>;