I am new to React.js and was setting up base project at that I was getting one issue that my routing got changed but component doesn\'t load. After googling I found that I n
I ran into the same issue. I forgot to give the history as a parameter to my rootReducer, in my store initialization.
const store = createStore( rootReducer(history), // <-- HERE {}, ... )