Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 497 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 497 Bytes

CounterApp to test React with Redux an Redux-saga

About Redux-Saga

Effects

  • take: Exec action of scope after redux action called
  • takeLatest: Exec in last action, all actions dispatch in sequence are ignored
  • call: expect a promisse resolve to continue other actions on the scope
  • takeEvery: all actions are executed
  • fork: not blocked, auto exec on the page when loaded
  • race: return the first result in a dispute of promises
  • select: get state in global store of the redux