Skip to content

Instantly share code, notes, and snippets.

@tfiechowski
Created October 31, 2018 16:43
Show Gist options
  • Save tfiechowski/182d5be060797e87a3b248af7d723a28 to your computer and use it in GitHub Desktop.
Save tfiechowski/182d5be060797e87a3b248af7d723a28 to your computer and use it in GitHub Desktop.
import api from './api';
export function addPhotos() { /* ... */ }
export function fetchPhotos() {
return async function(dispatch) {
const { data: photos } = await api.fetchPhotos();
dispatch(addPhotos(photos));
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment