react源碼學習(一)從JSX到React element

一. 體驗jsx: https://babeljs.io/repl const App = () => { return <div id="app" key="key">App</div> } //轉化結果 "use strict"; var App = function App() { return React.createElement("div", null, "App"); };
相關文章
相關標籤/搜索