arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Babel, JSX, and Build Steps

hashtag
Do I need to use JSX with React?

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

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

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

hashtag
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>