--- id: faq-build title: Babel, JSX, and Build Steps permalink: docs/faq-build.html layout: docs category: FAQ --- ### Do I need to use JSX with React? No! Check out https://reactjs.org/docs/react-without-jsx.html ### Do I need to use ES6 (+) with React? No! Check out https://reactjs.org/docs/react-without-es6.html ### How can I write comments in JSX? ```jsx
{/* Comment goes here */} Hello, {name}!
```