You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
398 B

7 years ago
---
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?
7 years ago
```jsx
{/* Comment goes here */}
7 years ago
```