官网的定义:Elements are the smallest building blocks of React apps.
const ReactElement = function(type, key, ref, self, source, owner, props) {
const element = {
// 此标记允许我们将其唯一标识为 React 元素
$$typeof: REACT_ELEMENT_TYPE,
// 属于元素的内置属性
type: type,
key: key,
ref: ref,
props: props,
// 记录负责创建此元素的组件。
_owner: owner,
};
// ...
return element;
};