Skip to content

Commit 1e7f44e

Browse files
authored
Merge pull request #68 from suyalcinkaya/faq-build
Enhances "Babel, JSX, and Build Steps" section translations
2 parents 989eca2 + 9724f41 commit 1e7f44e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

content/docs/faq-build.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
22
id: faq-build
3-
title: Babel, JSX, ve Oluşturma Aşamaları
3+
title: Babel, JSX, ve Derleme Aşamaları
44
permalink: docs/faq-build.html
55
layout: docs
66
category: FAQ
77
---
88

9-
### React ile JSX kullanmalı mıyım ? {#do-i-need-to-use-jsx-with-react}
9+
### JSX’i React ile kullanmam gerekir mi? {#do-i-need-to-use-jsx-with-react}
1010

11-
Hayır! Daha fazlası için ["React Without JSX"](/docs/react-without-jsx.html).
11+
Hayır! Daha fazlasını öğrenmek için ["JSX Olmadan React"](/docs/react-without-jsx.html) bölümüne göz atın.
1212

13-
### React ile ES6 (+) kullanmalı mıyım ? {#do-i-need-to-use-es6--with-react}
13+
### ES6 (+)'yı React ile kullanmam gerekir mi? {#do-i-need-to-use-es6--with-react}
1414

15-
Hayır! Daha fazlası için ["React Without ES6"](/docs/react-without-es6.html).
15+
Hayır! Daha fazlasını öğrenmek için ["ES6 Olmadan React"](/docs/react-without-es6.html) bölümüne göz atın.
1616

17-
### JSX içinde nasıl yorum satırı kullanabilirim ? {#how-can-i-write-comments-in-jsx}
17+
### JSX'te nasıl yorum yazabilirim? {#how-can-i-write-comments-in-jsx}
1818

1919
```jsx
2020
<div>
21-
{/* Yorum satırı buraya gelecek */}
21+
{/* Yorum buraya gelecek */}
2222
Hello, {name}!
2323
</div>
2424
```
2525

2626
```jsx
2727
<div>
28-
{/* Çok satırlı
29-
yorum satırı */}
28+
{/* Ayrıca çok satırlı
29+
yorumlar da çalışır. */}
3030
Hello, {name}!
3131
</div>
3232
```

0 commit comments

Comments
 (0)