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

[Done] Translation of faq-build.md .. #138

Merged
merged 2 commits into from Jul 20, 2019
Merged
Changes from 1 commit
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
18 changes: 9 additions & 9 deletions content/docs/faq-build.md
@@ -1,32 +1,32 @@
---
id: faq-build
title: Babel, JSX, and Build Steps
title: Babel, JSX و خطوات بناء التطبيقات
3imed-jaberi marked this conversation as resolved.
Show resolved Hide resolved
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) لتعلّم المزيد.
3imed-jaberi marked this conversation as resolved.
Show resolved Hide resolved

### Do I need to use ES6 (+) with React? {#do-i-need-to-use-es6--with-react}
### هل أحتاج إلى استخدام ES6 (+) مع React؟ {#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) لتعلّم المزيد.
3imed-jaberi marked this conversation as resolved.
Show resolved Hide resolved

### 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}!
</div>
```

```jsx
<div>
{/* It also works
for multi-line comments. */}
{/* تعمل أيضًا
لأجل التعليقات متعددة الأسطر */}
Hello, {name}!
</div>
```