Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 256 Bytes

README.MD

File metadata and controls

19 lines (13 loc) · 256 Bytes

作业1

转换前

<h1 id="title"><span>hello</span>world</h1>

转换后

React.createElement("h1", {
  id: "title"
},React.createElement("span", null, "hello"), "world");

如有不足,欢迎指出,共同进步!