Skip to content

Instantly share code, notes, and snippets.

@jasonleehodges
Last active March 21, 2020 22:40
Show Gist options
  • Save jasonleehodges/1be18e95a21dd5342100a14aabbca5df to your computer and use it in GitHub Desktop.
Save jasonleehodges/1be18e95a21dd5342100a14aabbca5df to your computer and use it in GitHub Desktop.
Example async action w/ Thunk
import { setData } from '../actions';
export const getDataWithThunk = () => {
return (dispatch) => {
fetch(url)
.then(resp => resp.json())
.then(data => dispatch(setData(data));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment