Three Principles of Redux
Single Source of Truth State is Ready Only Changes are made with Pure functions (reducers) Single Source of Truth The global state of your application is stored as an object inside a single tree. For example, continuing with the previous post: State is Read Only The only way to change the state is to dispatch […]