Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 349 Bytes

JSX到JavaScript的转换.md

File metadata and controls

25 lines (21 loc) · 349 Bytes
function Comp() {
 return <a>123</a>
}

<Comp id="div" key="key">
 <span>1</span>
 <span>1</span>
</Comp>
"use strict";

function Comp() {
 return React.createElement("a", null, "123");
}

React.createElement(
 Comp,
 { id: "div", key: "key" },
 React.createElement("span", null, "1"),
 React.createElement("span", null, "1")
);