Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active June 28, 2016 16:50
Show Gist options
  • Select an option

  • Save viniciusdacal/1a31f2a14342773a3ba74e27b8e7e13c to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/1a31f2a14342773a3ba74e27b8e7e13c to your computer and use it in GitHub Desktop.
dispatch({type: CALL_API_REQUEST});
http.get('http://api.myapp.com/service')
.then(
(result) => dispatch({type: CALL_API_SUCCESS, body: result}),
(error) => dispatch({type: CALL_API_FAILURE, error: error}),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment