1.0.4 • Published 5 years ago

react-scroll-to-top-route v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

react-scroll-to-top-route

npm version Build Status NPM Packages NPM Dev Dependencies

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>;