From 5136babfa072547496a7a5e42a6ef488dc980c0b Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Fri, 8 Feb 2019 15:58:25 -0200 Subject: [PATCH 1/4] Updated faq-build.md --- content/docs/faq-build.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index b071cc131..87849e3b5 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -1,32 +1,32 @@ --- id: faq-build -title: Babel, JSX, and Build Steps +title: Babel, JSX e Etapas de construção 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 comentarios em JSX? {#como-posso-escrever-comentarios-em-jsx} ```jsx
- {/* Comment goes here */} - Hello, {name}! + {/* Aqui vai o comentario */} + Ola, {nome}!
``` ```jsx
- {/* It also works - for multi-line comments. */} - Hello, {name}! + {/* Também funciona em + comentários com várias linhas. */} + Ola, {nome}!
``` From 1386b37802c3298071bca1d7ca3fd2714fafb8ac Mon Sep 17 00:00:00 2001 From: Glaucia Lemos Date: Fri, 8 Feb 2019 20:20:05 -0200 Subject: [PATCH 2/4] Update content/docs/faq-build.md Co-Authored-By: GleidsonDaniel --- content/docs/faq-build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index 87849e3b5..05cf9e820 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -1,6 +1,6 @@ --- id: faq-build -title: Babel, JSX e Etapas de construção +title: Babel, JSX e Etapas de Build permalink: docs/faq-build.html layout: docs category: FAQ From 6bfa3d30f2365ecb576f4151ce57a584018efa81 Mon Sep 17 00:00:00 2001 From: Glaucia Lemos Date: Fri, 8 Feb 2019 20:20:19 -0200 Subject: [PATCH 3/4] Update content/docs/faq-build.md Co-Authored-By: GleidsonDaniel --- content/docs/faq-build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index 05cf9e820..441f66033 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -14,7 +14,7 @@ Não! Confira ["React Sem JSX"](/docs/react-without-jsx.html) para saber mais. Não! Confira ["React Sem ES6"](/docs/react-without-es6.html) para saber mais. -### Como posso escrever comentarios em JSX? {#como-posso-escrever-comentarios-em-jsx} +### Como posso escrever comentários em JSX? {#como-posso-escrever-comentarios-em-jsx} ```jsx
From a4867c4a207e9103f635693c53c045c24740091c Mon Sep 17 00:00:00 2001 From: Gleidson Daniel Silva Date: Fri, 8 Feb 2019 20:22:02 -0200 Subject: [PATCH 4/4] Update faq-build.md --- content/docs/faq-build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/faq-build.md b/content/docs/faq-build.md index 441f66033..ed641e8d2 100644 --- a/content/docs/faq-build.md +++ b/content/docs/faq-build.md @@ -19,7 +19,7 @@ Não! Confira ["React Sem ES6"](/docs/react-without-es6.html) para saber mais. ```jsx
{/* Aqui vai o comentario */} - Ola, {nome}! + Ola, {name}!
``` @@ -27,6 +27,6 @@ Não! Confira ["React Sem ES6"](/docs/react-without-es6.html) para saber mais.
{/* Também funciona em comentários com várias linhas. */} - Ola, {nome}! + Ola, {name}!
```