React router not showing browser history

后端 未结 5 2100
一个人的身影
一个人的身影 2021-01-01 16:38

I\'m learning from this tutorial but I keep getting this error:

\'react-router\' does not contain an export named \'browserHistory\'.

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-01 17:35

    Simple Solution

    method 1:

    npm install --save history
    
    use this now:
    
    import createHistory from 'history/createBrowserHistory'
    

    method:2

    Use Version 3  
    
    npm install react-router@3
    

提交回复
热议问题