What’s the typical flow of data like in a React + Redux app?

Technology CommunityCategory: ReactWhat’s the typical flow of data like in a React + Redux app?
VietMX Staff asked 3 years ago

Callback from UI component dispatches an action with a payload, which then is intercepted in a reducer, possibly producing a new application state, which is then propagated down through the tree of components in the application from the Redux store.