You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/reference/react/useDeferredValue.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,13 +36,13 @@ function SearchPage() {
36
36
37
37
#### Parametreler {/*parameters*/}
38
38
39
-
*`value`: The value you want to defer. It can have any type.
40
-
***optional**`initialValue`: A value to use during the initial render of a component. If this option is omitted, `useDeferredValue`will not defer during the initial render, because there's no previous version of`value`that it can render instead.
39
+
*`value`: Ertelemek istediğiniz değer. Herhangi bir türde olabilir.
40
+
***isteğe bağlı**`initialValue`: Bir bileşenin ilk render'ı sırasında kullanılacak bir değer. Bu seçenek atlanırsa, `useDeferredValue`ilk render sırasında erteleme yapmaz, çünkü yerine render edebileceği bir önceki`value`versiyonu yoktur.
41
41
42
42
43
43
#### Dönüş değeri {/*returns*/}
44
44
45
-
-`currentValue`: During the initial render, the returned deferred value will be the `initialValue`, or the same as the value you provided. During updates, React will first attempt a re-render with the old value (so it will return the old value), and then try another re-render in the background with the new value (so it will return the updated value).
45
+
-`currentValue`: İlk render sırasında, döndürülen ertelenmiş değer `initialValue` olacaktır veya sağladığınız değerle aynı olur. Güncellemeler sırasında, React önce eski değerle yeniden render yapmayı dener (bu yüzden eski değeri döndürecektir), ardından arka planda yeni değerle bir başka yeniden render yapmayı dener (bu yüzden güncellenmiş değeri döndürecektir).
0 commit comments