reactjs - Difference between component and container in react redux -
what difference between component , container in react redux?
component
part of react api. component class or function describes part of react ui.
container informal term react component connect
-ed redux store. containers receive redux state updates , dispatch
actions, , don't render dom elements; delegate rendering presentational child components.
for more detail read presentational vs container components dan abramov.
Comments
Post a Comment