I can see in this file (https://github.com/ReactTraining/react-router/blob/v0.13.3/modules/createRouter.js) that there is a refresh function but I have no idea how to call i
I'm using Django with React router. I added a urlpattern in Django so every mismatch url will redirect to the React router root page, it just works.
urlpatterns += [ url(r'^.*', yourviewclass, name='home') ]