React router not showing browser history

后端 未结 5 2063
一个人的身影
一个人的身影 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:13

    You need to get browserHistory from the history module now.

    import createHistory from 'history/createBrowserHistory'
    

    Note that they changed the module API recently so if you are using the latest version the import slightly changed:

    import { createBrowserHistory } from 'history'
    

提交回复
热议问题