Difference between component and container in react redux

前端 未结 7 1961
青春惊慌失措
青春惊慌失措 2020-12-22 18:27

What is the difference between component and container in react redux?

7条回答
  •  再見小時候
    2020-12-22 18:53

    They're both components; containers are functional, so they do not render any html on their own, and then you also have presentational components, where you write the actual html. The purpose of the container is to map the state and dispatch to props for the presentational component.

    Further reading: Link

提交回复
热议问题