Skip to content

Instantly share code, notes, and snippets.

@navgarcha
Last active July 30, 2016 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navgarcha/ea1dfc41031d6816c05f56263512340e to your computer and use it in GitHub Desktop.
Save navgarcha/ea1dfc41031d6816c05f56263512340e to your computer and use it in GitHub Desktop.
import { takeLatest } from 'redux-saga';
import { PHOTOS_REQUEST } from 'actions/photos';
function* requestPhotos() {
// ...
}
export function* watchRequestPhotos() {
yield* takeLatest(PHOTOS_REQUEST, requestPhotos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment