Files
react.dev/content/docs/faq-build.md
William Lim (林良) 8c797096e7 Update faq-build.md
2018-03-29 08:08:51 +08:00

562 B

id, title, permalink, layout, category
id title permalink layout category
faq-build Babel, JSX, and Build Steps docs/faq-build.html docs FAQ

Do I need to use JSX with React?

No! Check out "React Without JSX" to learn more.

Do I need to use ES6 (+) with React?

No! Check out "React Without ES6" to learn more.

How can I write comments in JSX?

<div>
  {/* Comment goes here */}
  Hello, {name}!
</div>
<div>
  {/* It also works 
  for multi-line comments. */}
  Hello, {name}! 
</div>