Skip to content

Instantly share code, notes, and snippets.

@drumnickydrum
Last active December 30, 2022 21:13
Show Gist options
  • Save drumnickydrum/2a7bfce0a0acd9f84f12f3e631d5b07c to your computer and use it in GitHub Desktop.
Save drumnickydrum/2a7bfce0a0acd9f84f12f3e631d5b07c to your computer and use it in GitHub Desktop.
[React: Browser/Router Sync] Sync the browser's back button with react-router history.goBack #react #browser #router
function useGoBackBrowserSync() {
useEffect(() => {
return history.listen((newLocation, action) => {
if (action === 'POP') {
history.goBack();
}
});
}, [history]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment