Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 773 Bytes

re-2.md

File metadata and controls

19 lines (10 loc) · 773 Bytes

React 中 Element 与 Component 的区别是?

?> 英:What’s the difference between an Element and a Component in React?

答:

简单而言,React Element 是描述屏幕上所见内容的数据结构,是对于 UI 的对象表述。

典型的 React Element 就是利用 JSX 构建的声明式代码片然后被转化为createElement的调用组合。

React Component 则是可以接收参数输入并且返回某个 React Element 的函数或者类。

?> 更多介绍可以参考React Elements vs React Components

参考资料:

题目来源

翻译文章