Babel、JSX 和構建步驟
我需要在 React 中使用 JSX 嗎?
不需要!請參考沒有 JSX 的 React 來了解更多資訊。
我需要在 React 裡使用 ES6 (+) 嗎?
不需要!請參考沒有 ES6 的 React 來了解更多資訊。
如何在 JSX 中編寫註解?
<div>
{/* Comment goes here */}
Hello, {name}!
</div>
<div>
{/* It also works
for multi-line comments. */}
Hello, {name}!
</div>
Is this page useful?Edit this page