Babel, JSX, and Build Steps
用 React 时需要使用 JSX 吗?
非也!查看 “React 不使用 JSX” 学习更多。
用 React 时需要使用 ES6 (+) 吗?
非也!查看 “React 不使用 ES6” 学习更多。
在 JSX 中如何写注释?
<div>
{/* Comment goes here */}
Hello, {name}!
</div>
<div>
{/* It also works
for multi-line comments. */}
Hello, {name}!
</div>