Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created October 8, 2021 09:51
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 techomoro/abbc822529a760063573e97a14c86b56 to your computer and use it in GitHub Desktop.
Save techomoro/abbc822529a760063573e97a14c86b56 to your computer and use it in GitHub Desktop.
// store/sagas.js
import { all, fork } from "redux-saga/effects";
import PostSaga from "./posts/saga";
export default function* rootSaga() {
yield all([fork(PostSaga)]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment