我正在使用react和redux教程,其中使用了以下代码:
class App extends Component {
render() {
return (
<div>
{React.cloneElement(this.props.children, this.props)}
</div>
);
}
};
我已查看cloneElement()
{React.cloneElement(ChatWindow, this.props.children, this.props)}
,但它仅涵盖了将React组件作为第一个对象传递的示例,例如
hashMap.get("type")
。
当省略初始元素arg时,该函数如何工作?