Reactify Redux Thunk/Saga
This section contains all the information regarding the reactify redux thunk and reactify redux saga version of the template.
Last updated
This section contains all the information regarding the reactify redux thunk and reactify redux saga version of the template.
Last updated
Redux Thunk middleware allows you to write action creators that return a function instead of an action. The thunk can be used to delay the dispatch of an action, or to dispatch only if a certain condition is met. The inner function receives the store methods dispatch
and getState
as parameters. You can find the below contents in the main folder:
Redux Saga is a middleware library that aims to make application required functions (i.e. asynchronous things like data fetching and impure things like accessing the browser cache) easier to manage, more efficient to execute, easy to test, and better at handling failures. You can find the below contents in the main folder: