Three Principles of Redux -
1)The global state of application is stored as an object inside a single store
2)The only way to change the state is to dispatch an action, object that describe what happened
3)How the state tree is updated based on actions, you write pure reducers
Learn Redux Core Concepts in Simple Way
Three Core Concepts:
1)Store:
In Redux the store holds the state of your application.
2)Action:
Describes what happened in the application.
3)Reducer:
Reducer handles the action and decides how to update the state.
#reactjs
#webdev