react-router
Version:
A complete routing library for React.js
20 lines (14 loc) • 320 B
JavaScript
;
import { history } from './PropTypes';
/**
* A mixin that adds the "history" instance variable to components.
*/
var History = {
contextTypes: {
history: history
},
componentWillMount: function componentWillMount() {
this.history = this.context.history;
}
};
export default History;