From 7dae6a48e947a61f5673b7609a82fc04cd48cb8d Mon Sep 17 00:00:00 2001 From: Volodymyr Date: Fri, 19 Apr 2019 23:47:40 -0400 Subject: [PATCH] Translate document into Ukrainian --- 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..4c0b9e36e 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, та етапи збірки 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} +### Чи необхідно використовувати JSX у React? {#do-i-need-to-use-jsx-with-react} -No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more. +Ні! Прочитайте ["React без JSX"](/docs/react-without-jsx.html), щоб дізнатися докладніше. -### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react} +### Чи необхідно в React використовувати ES6 (+)? {#do-i-need-to-use-es6--with-react} -No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more. +Ні! Прочитайте ["React без ES6"](/docs/react-without-es6.html), щоб дізнатися докладніше. -### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx} +### Як писати коментарі в JSX? {#how-can-i-write-comments-in-jsx} ```jsx
- {/* Comment goes here */} - Hello, {name}! + {/* Це коментар */} + Привіт, {name}!
``` ```jsx
- {/* It also works - for multi-line comments. */} - Hello, {name}! + {/* А це + багатостроковий коментар. */} + Привіт, {name}!
```