1478 Views
Redux CRUD is a convention driven way of building CRUD applications using Redux. After building several Flux applications we found that we always end up duplicating the same actions types, actions and reducers for all our resources. Redux CRUD gives you an standard set of: action types e.g. USER_UPDATE_SUCCESS actions e.g. updateSuccess, updateError reducers for the actions types above e.g. updateSuccess Redux CRUD uses seamless-immutable for storing data.
0 comments