Skip to content

Instantly share code, notes, and snippets.

@JohnRandom
Created December 1, 2016 12:47
Show Gist options
  • Save JohnRandom/de99f751e94302802ecef05b3297cf43 to your computer and use it in GitHub Desktop.
Save JohnRandom/de99f751e94302802ecef05b3297cf43 to your computer and use it in GitHub Desktop.
import { browserHistory } from 'react-router';
function locationReducer(state, action) {
switch (action.type) {
case 'PUSH_URL':
browserHistory.push(action.payload);
break;
case 'REPLACE_URL':
browserHistory.replace(action.payload);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment