Skip to content

Commit

Permalink
Translate "Babel, JSX, and Build Steps" into Russian
Browse files Browse the repository at this point in the history
  • Loading branch information
avevlad committed Feb 9, 2019
1 parent 1b5ca1e commit a5f9019
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
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, и этапы сборки
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>
```
2 changes: 1 addition & 1 deletion content/docs/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
- id: faq-ajax
title: AJAX and APIs
- id: faq-build
title: Babel, JSX, and Build Steps
title: Babel, JSX, и этапы сборки
- id: faq-functions
title: Passing Functions to Components
- id: faq-state
Expand Down

0 comments on commit a5f9019

Please sign in to comment.