Skip to content

Commit 8994b60

Browse files
committed
translate children page
1 parent 01c55a4 commit 8994b60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/reference/react/Children.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,6 +944,6 @@ Diyelim ki `RowList` bileşenine şu şekilde iki child geçiriyorsunuz:
944944
</RowList>
945945
```
946946

947-
If you do `Children.count(children)` inside `RowList`, you will get `2`. Even if `MoreRows` renders 10 different items, or if it returns `null`, `Children.count(children)` will still be `2`. From the `RowList`'s perspective, it only "sees" the JSX it has received. It does not "see" the internals of the `MoreRows` component.
947+
Eğer `RowList` içinde `Children.count(children)` kullanırsanız `2` sonucunu alırsınız. `MoreRows` 10 farklı item render etse bile ya da `null` döndürse bile, `Children.count(children)` yine `2` olur. `RowList` açısından bakıldığında sadece kendisine gelen JSX’i “görür”. `MoreRows` bileşeninin iç detaylarını “göremez”.
948948

949-
The limitation makes it hard to extract a component. This is why [alternatives](#alternatives) are preferred to using `Children`.
949+
Bu kısıtlama, bir bileşeni extract etmeyi zorlaştırır. Bu yüzden `Children` kullanmak yerine [alternatifler](#alternatives) tercih edilir.

0 commit comments

Comments
 (0)