Monday, April 17, 2017

Core principles of Redux


Redux has 3 principles

  • All application state is placed in a single application store (Helps is testing and debugging )
  • Only way to mutate state is to emit an action which describes the user intent
  • State is changed by pure functions. These are called as Reducers.

No comments:

Post a Comment