Reputation: 23
React Router will not render Route component unless page is refreshed I can't find the reason why react is not rendering the component.
Upvotes: 0
Views: 80
Reputation: 1153
Have you tried using browserHistory
in the Router?
import { browserHistory } from 'react-router';
<Router history={browserHistory}>
...
</Router>
Upvotes: 1