Как передать параметр с помощью this.props.history.push('/page')
в React-Router v4?
.then(response => {
var r = this;
if (response.status >= 200 && response.status < 300) {
r.props.history.push('/template');
});