Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 23, 2019 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LukeSmetham/172a0ed199f7449506c21c5f3b9a669b to your computer and use it in GitHub Desktop.
Save LukeSmetham/172a0ed199f7449506c21c5f3b9a669b to your computer and use it in GitHub Desktop.
import { all, fork } from 'redux-saga/effects';
// Sagas //
import auth from 'data/auth/sagas';
export default function*() {
yield all([
fork(auth),
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment