In my react application I have a few parameters that the user comes to the application that provide some information about where they came from. Is there a way using react-r
In this case you can use a Store that holds URL state and you can use browserHistory to push custom history state.
https://github.com/reactjs/react-router/blob/master/docs/guides/Histories.md#browserhistory
import { browserHistory } from 'react-router'
browserHistory.push({});
Here is a link how to navigate outside components