Skip to content

Instantly share code, notes, and snippets.

@samuelayo
Created January 29, 2018 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelayo/508ffc273baac6f984cba5148003d97c to your computer and use it in GitHub Desktop.
Save samuelayo/508ffc273baac6f984cba5148003d97c to your computer and use it in GitHub Desktop.
loadMore() {
this.setState({ loading: true });
setTimeout(() => {
this.setState({ items: this.state.items + 20, loading: false });
}, 2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment