react-router v4 - browserHistory is undefined

前端 未结 5 487
南笙
南笙 2020-12-05 14:34

I am creating my first react app in electron (my first electron app too). I have two routes & need to navigate from one to another. For that I am using following code:

5条回答
  •  死守一世寂寞
    2020-12-05 15:31

    import { browserHistory } from 'react-router' does not work in React router 4. Link

    Use the redirect component:

    import { Redirect } from 'react-router';
    
    

    The render function should replace the entire content with Redirect component.

提交回复
热议问题