Umair Shahid
Umair Shahid

Reputation: 23

React router dom not render component

enter link description hereReact 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

Answers (1)

brub
brub

Reputation: 1153

Have you tried using browserHistory in the Router?

import { browserHistory } from 'react-router'; 

<Router history={browserHistory}>
...
</Router>

Upvotes: 1

Related Questions