mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 21:15:05 +00:00
25 lines
467 B
Markdown
25 lines
467 B
Markdown
---
|
|
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 ["React Without JSX"](/docs/react-without-jsx.html) to learn more.
|
|
|
|
### Do I need to use ES6 (+) with React?
|
|
|
|
No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more.
|
|
|
|
### How can I write comments in JSX?
|
|
|
|
```jsx
|
|
<div>
|
|
{/* Comment goes here */}
|
|
Hello, {name}!
|
|
</div>
|
|
```
|