Please enable JavaScript.
Coggle requires JavaScript to display documents.
React - Coggle Diagram
React
Redux
Definition
-
is a JS Libs , use to manage and update states of the application
Usage :
Manage Global State , those state is used in various palaces in application . Allow components access and update states => solve a tremendous problem of React : preventing props drilling
-
-
-
Knowledge Requirements
-
Immutability : Không được thay đổi trực tiếp, chỉ nên copy rồi cập nhật.
Architecture
Reducers
reducer( initialState , action) => return newState
-
Actions
Is a object with common 2 attributes {type, payload}
-