App.js
This is the event handling button click:
this.handleClick = this.handleClick.bind(this);
handleClick(e) {
debugger;
e.preventDefault();
this.context.router.history.push('/HomePage');
}
<button onClick={this.handleClick}>Navigate </button>
TypeError: Cannot read property 'history' of undefined
I installed this using: npm install prop-types --save
It's not working.