Saga Slice
Redux should not be so complicated
Reduced Boilerplate
No more touching 4 files to modify 1 thing. Combine reducers, types, actions and sagas into 1 file.
Write Cleaner Code
Regular redux switch statements can get messy. Trying to mitigate that can be complicated and inconsisteny.
Immutability
Uses Immer to produce new states so you can modify your state as if it was regular javascript. Dost thou even hoist?