Skip to content

Instantly share code, notes, and snippets.

@hiakku

hiakku/saga.js Secret

Created November 4, 2022 13:06
Show Gist options
  • Save hiakku/c860caf00bd563611d1b66690934d706 to your computer and use it in GitHub Desktop.
Save hiakku/c860caf00bd563611d1b66690934d706 to your computer and use it in GitHub Desktop.
import { takeEvery } from "redux-saga/effects";
export function* watchSagaFunc() {
try {
yield someTestFunc();
//some try functionality
} catch {
//some error
}
}
export default function* rootSaga() {
yield takeEvery('TEST_FUNCTION',watchSagaFunc);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment