跳到主內容

【React】JSX 如何轉譯

 

// JSX 寫法
function App() {
   return <h1>React 我來了 <small className="text-danger">{new Date().toLocaleDateString() }</small></h1>
}

// JS 寫法 React.createElement
function App(){
  // React.createElement({tag} , {屬性}, {值}
  return React.createElement('h1',null, "React 我來了",
  React.createElement(
    'small',
    {
      className :"text-danger"
    },new Date().toLocaleDateString())
  );
}