Skip to content

Translate Babel, JSX, and Build FAQ #111

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

Merged
merged 2 commits into from
Oct 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, və Qurulma Addımları
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 ilə JSX işlətmək vacibdir? {#do-i-need-to-use-jsx-with-react}

No! Check out ["React Without JSX"](/docs/react-without-jsx.html) to learn more.
Yox! Əlavə məlumat üçün ["JSX-siz React sənədinə"](/docs/react-without-jsx.html) baxın.

### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react}
### React ilə ES6 (+) işlətmək vacibdir? {#do-i-need-to-use-es6--with-react}

No! Check out ["React Without ES6"](/docs/react-without-es6.html) to learn more.
Yox! Əlavə məlumat üçün ["ES6-sız React sənədinə"](/docs/react-without-es6.html) baxın.

### How can I write comments in JSX? {#how-can-i-write-comments-in-jsx}
### JSX-də kommentləri necə yazmaq lazımdır? {#how-can-i-write-comments-in-jsx}

```jsx
<div>
{/* Comment goes here */}
Hello, {name}!
{/* Komment bura gedir */}
Salam {name}!
</div>
```

```jsx
<div>
{/* It also works
for multi-line comments. */}
Hello, {name}!
{/* Çox sətrli kommentlər də
əlavə etmək mümkündür. */}
Salam {name}!
</div>
```