Skip to content

Instantly share code, notes, and snippets.

@navgarcha
Last active July 30, 2016 11:16
Show Gist options
  • Select an option

  • Save navgarcha/ea1dfc41031d6816c05f56263512340e to your computer and use it in GitHub Desktop.

Select an option

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