Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Last active September 24, 2019 14:54
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/a8ed82aa082acaafa37cc2bf7a4ec06e to your computer and use it in GitHub Desktop.
Save LukeSmetham/a8ed82aa082acaafa37cc2bf7a4ec06e to your computer and use it in GitHub Desktop.
import { all, takeEvery } from 'redux-saga/effects';
// Sagas //
import loginRequest from './loginRequest';
// Types //
import { LOGIN } from '../types';
export default function*() {
yield takeEvery(LOGIN.REQUEST, loginRequest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment