Skip to content

Commit b4f2fdb

Browse files
committed
translate children page
1 parent 215c98c commit b4f2fdb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/reference/react/Children.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ function SeparatorList({ children }) {
8080
8181
[Aşağıda daha fazla örneğe bakın](#running-some-code-for-each-child)
8282
83-
#### Parameters {/*children-foreach-parameters*/}
83+
#### Parametreler {/*children-foreach-parameters*/}
8484
85-
* `children`: The value of the [`children` prop](/learn/passing-props-to-a-component#passing-jsx-as-children) received by your component.
86-
* `fn`: The function you want to run for each child, similar to the [array `forEach` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach) callback. It will be called with the child as the first argument and its index as the second argument. The index starts at `0` and increments on each call.
85+
* `children`: Bileşeniniz tarafından alınan [`children` prop](/learn/passing-props-to-a-component#passing-jsx-as-children) değeri.
86+
* `fn`: Her çocuk için çalıştırmak istediğiniz işlev, [array `forEach` method](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach) callback'e benzer. It will be called with the child as the first argument and its index as the second argument. The index starts at `0` and increments on each call.
8787
* **optional** `thisArg`: The [`this` value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this) with which the `fn` function should be called. If omitted, it's `undefined`.
8888
8989
#### Returns {/*children-foreach-returns*/}

0 commit comments

Comments
 (0)