|
|
|
|
|
by jshc
2962 days ago
|
|
curious about the explicit true and false in one of their code examples. any good reason for that? // dispatching an action based on state change
componentWillUpdate(nextProps, nextState) {
if (nextState.open == true && this.state.open == false) {
this.props.onWillOpen();
}
} |
|