Redux - mmedrano9438/peripheral-brain GitHub Wiki

its a library used to manage or update state, use it events called actions, we can call it a (state management tool). It serves as a centralized store for state that is used across the entire application. Most frequently used with react but can be used with other react frameworks. Consists of 3 main components: actions/dispatchers (take an action), centralized store (stores data object for app), and reducers (which are functions that take in current state, perform an action and return new state.