class Connect extends Component {
constructor(props, context) {
// .......
this.initSubscription()
}
initSubscription() {
// .......
this.subscription = new Subscription(this.store, parentSub, this.onStateChange.bind(this))
// ......
}
onStateChange() {
// ...
this.setState(dummyState)
//...
}