I\'ve read many things about react-router v4 and the npm history library to this point, but none seems to be helping me.
My code is functioning as expected up to t
Please ensure that you are using
const history = createBrowserHistory({forceRefresh:true});
not
const history = createBrowserHistory();
I was able to update the page once I added "{forceRefresh:true}"