I'm learning from this tutorial but I keep getting this error:
'react-router' does not contain an export named 'browserHistory'.
The file that has react-router is this:
import React from 'react';
import ReactDOM from 'react-dom';
import { Router, browserHistory } from 'react-router';
import routes from './routes';
ReactDOM.render(
<Router history={browserHistory} routes={routes} />,
document.getElementById('root')
);