Skip to content

Instantly share code, notes, and snippets.

@izabellewilding
Created July 9, 2020 20:56
Show Gist options
  • Save izabellewilding/5099fa04aaf9a2e9713d89bd738f347d to your computer and use it in GitHub Desktop.
Save izabellewilding/5099fa04aaf9a2e9713d89bd738f347d to your computer and use it in GitHub Desktop.
componentDidMount() {
fetch("https://example.api.com")
.then(response => response.json())
.then(data => this.setState({ data }));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment