Skip to content

Instantly share code, notes, and snippets.

@AlexKott
Created October 11, 2018 08:17
Show Gist options
  • Save AlexKott/e8e6f5b205ab1f6e73c2827ca6db46b5 to your computer and use it in GitHub Desktop.
Save AlexKott/e8e6f5b205ab1f6e73c2827ca6db46b5 to your computer and use it in GitHub Desktop.
Fetching data in componentDidMount
class UserProfile extends React.Component {
// ...
async componentDidMount() {
const { data } = await httpAdapter.get(`${API_URL}/users/${this.props.userId}`);
this.setState({ user: data.user });
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment