Skip to content

Instantly share code, notes, and snippets.

@enkot
Created September 3, 2017 09:45
Show Gist options
  • Save enkot/6dffda4e2acb39e53bb448342bae6f15 to your computer and use it in GitHub Desktop.
Save enkot/6dffda4e2acb39e53bb448342bae6f15 to your computer and use it in GitHub Desktop.
// Listen for changes
componentDidMount() {
ListStore.on('change', this._onChange);
}
// Update view state when change event is received
_onChange: function() {
this.setState(ListStore.getState());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment