Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 392 Bytes

REDUX.md

File metadata and controls

5 lines (3 loc) · 392 Bytes

Redux

Redux is a predictable state container for JavaScript apps, which is a fancy way of saying it controls application state and state mutations. It does so by keeping state in a store, which is the single source of truth.

Redux is an alternative to Flux and used a lot together with React, but you can use it with any other view library.