Presentational and Container Components
react团队成员之一的Dan Abramov在medium上写过一篇文章 Presentational and Container Components,他在文中将组件分为两类,分别是Presentational
和Container
。Presentational
是展示类组件,比如说Page,Sidebar,Story,List。Container
组件是功能类组件,比如UserPage, FollowersSidebar, StoryContainer, FollowedUserList。
它们是React组件的两种设计模式,和组件本身是class component还是function component关系不大。