Saga Slice

Redux should not be so complicated

[object Object]

Reduced Boilerplate

No more touching 4 files to modify 1 thing. Combine reducers, types, actions and sagas into 1 file.

[object Object]

Write Cleaner Code

Regular redux switch statements can get messy. Trying to mitigate that can be complicated and inconsisteny.

[object Object]

Immutability

Uses Immer to produce new states so you can modify your state as if it was regular javascript. Dost thou even hoist?