Created
July 23, 2019 07:12
-
-
Save sliim35/8f71084a1a70f78bb588f847b826f4bf to your computer and use it in GitHub Desktop.
Redux Saga
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://github.com/redux-saga/redux-saga | |
| // const generator = function* () {} ✅ | |
| // const generator = ()* => {} ❌ | |
| /** | |
| * Effects - https://redux-saga.js.org/docs/api/ | |
| * - Thread managment: - Action creation - Data seeding - Flow control | |
| * call put select take | |
| * fork takeEvery | |
| * spawn takeLatest | |
| * apply | |
| * cancel | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment