Skip to content

Instantly share code, notes, and snippets.

@piq9117
Created May 11, 2016 20:14
Show Gist options
  • Save piq9117/56cc5370f8c40e4fc3b1186917ac247f to your computer and use it in GitHub Desktop.
Save piq9117/56cc5370f8c40e4fc3b1186917ac247f to your computer and use it in GitHub Desktop.
function fetchPosts (subreddit) {
return dispatch => {
dispatch(requestPosts(subreddit))
return fetch('http://www.reddit.com/r/${subreddit}.json')
.then(response => response.json())
.then(json => dispatch(receivePosts(subreddit, json)))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment