Skip to content

Instantly share code, notes, and snippets.

@stanleybz
Created May 9, 2018 05:23
Show Gist options
  • Save stanleybz/b0e3737414d8e28860ae43fc0f702cc8 to your computer and use it in GitHub Desktop.
Save stanleybz/b0e3737414d8e28860ae43fc0f702cc8 to your computer and use it in GitHub Desktop.
React route auto scroll to top
<Route
onChange={(prevState, nextState) => {
if (nextState.location.action !== 'POP') window.scrollTo(0, 0);
}}
>
<Route/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment