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

Translate "Babel, JSX, and Build Steps" into Russian #38

Merged
merged 3 commits into from Feb 10, 2019
Merged
Show file tree
Hide file tree
Changes from all 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
@@ -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
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