Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation of the "Babel, JSX, and Build Steps" page #12

Merged
merged 4 commits into from
Feb 8, 2019
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions content/docs/faq-build.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
id: faq-build
title: Babel, JSX, and Build Steps
title: Babel, JSX e Etapas de Build
permalink: docs/faq-build.html
layout: docs
category: FAQ
---

### Do I need to use JSX with React? {#do-i-need-to-use-jsx-with-react}
### Eu preciso usar JSX com React? {#eu-preciso-usar-jsx-com-react}

No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more.
Não! Confira ["React Sem JSX"](/docs/react-without-jsx.html) para saber mais.

### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react}
### Eu preciso usar ES6 (+) com React? {#eu-preciso-usar-es6--com-react}

No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more.
Não! Confira ["React Sem ES6"](/docs/react-without-es6.html) para saber mais.

### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx}
### Como posso escrever comentários em JSX? {#como-posso-escrever-comentarios-em-jsx}

```jsx
<div>
{/* Comment goes here */}
Hello, {name}!
{/* Aqui vai o comentario */}
Ola, {nome}!
</div>
```

```jsx
<div>
{/* It also works
for multi-line comments. */}
Hello, {name}!
{/* Também funciona em
comentários com várias linhas. */}
Ola, {nome}!
</div>
GleidsonDaniel marked this conversation as resolved.
Show resolved Hide resolved
```