|
|
|
|
|
by alexey2020
1648 days ago
|
|
With pure Redux approach the mutation flow is more complex:
- send mutation request to Backend
- fetch updated data
- put the updated data in the Store
- see the updated data propagated in components The suggested approach:
- send mutation request to Backend
- see the updated data being fetched and displayed by components To me the second is much cleaner and easier to reason about |
|