React router not showing browser history

后端 未结 5 2088
一个人的身影
一个人的身影 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条回答
  •  暖寄归人
    2021-01-01 17:33

    I had the same problem and I wasted a couple of days to figure it out. This error happens simply because react-router v4 does not have the browserHistory (I don't know if that's a good thing or not though). I solved the issue by installing v3 like this:

    npm install react-router@3 --save
    

提交回复
热议问题