Skip to content

Instantly share code, notes, and snippets.

@barneycarroll
Created May 2, 2017 10:34
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 barneycarroll/0020cde7d7b4c2f23ff84d1a9868a4ca to your computer and use it in GitHub Desktop.
Save barneycarroll/0020cde7d7b4c2f23ff84d1a9868a4ca to your computer and use it in GitHub Desktop.
componentDidMount() {
fetchPosts().then(({posts}) => {
this.setState({posts});
});
fetchComments().then(({comments}) => {
this.setState({comments});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment