此文章是翻译Babel,JSX, and Build Steps这篇React(版本v16.2.0)官方文档。

Babel,JSX, and Build Steps

我需要在React 中使用JSX 吗?

不需要!查看“React Without JSX” 去了解更多。

我需要在React 中使用ES6(+) 吗?

不需要!查看“React Without ES6” 去了解更多。

我如何在JSX 中写注释?

  1. <div>
  2. {/* Comment goes here */}
  3. Hello, {name}!
  4. </div>