what is pure component react code example
Example 1: pure components
import { withRouter } from 'react-router-dom';
class MyComponent extends React.Component {
render () {
this.props.history;
}
}
withRouter(MyComponent);
Example 2: pure components
import { browserHistory } from 'react-router';
browserHistory.push('/some/path');