-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Translate "Babel, JSX, and Build Steps" into Russian
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, и этапы сборки | ||
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} | ||
### Необходимо ли в React использовать JSX? {#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 | ||
<div> | ||
{/* Comment goes here */} | ||
Hello, {name}! | ||
{/* Комментарий пишется здесь */} | ||
Привет, {name}! | ||
</div> | ||
``` | ||
|
||
```jsx | ||
<div> | ||
{/* It also works | ||
for multi-line comments. */} | ||
Hello, {name}! | ||
{/* Это работает и для | ||
многострочных комментариев. */} | ||
Привет, {name}! | ||
</div> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters