Redux is a library for managing global state of the entire application.
Simple analogy: Imagine you are managing a hotel.
Problems Redux solves:
How Redux works:
{ type: "ADD_TODO", payload: "Buy milk" }.dispatch(addTodo("Buy milk")).Redux Toolkit (modern Redux): Reduces code several times. With Immer you can "mutate" state, and Redux will create a copy itself.