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