Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 467 Bytes

faq-build.md

File metadata and controls

24 lines (18 loc) · 467 Bytes
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>