Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 484 Bytes

REDUX.md

File metadata and controls

10 lines (7 loc) · 484 Bytes
title excerpt
Redux
a predictable state container for apps

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.