We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e030b2 commit d028699Copy full SHA for d028699
src/content/reference/react/createRef.md
@@ -55,7 +55,7 @@ class MyComponent extends Component {
55
#### Uyarılar {/*caveats*/}
56
57
* `createRef` her zaman *farklı* bir nesne döndürür. Bu, `{ current: null }` yazmaya eşdeğerdir.
58
-* In a function component, you probably want [`useRef`](/reference/react/useRef) instead which always returns the same object.
+* Bir fonksiyon bileşeninde, muhtemelen bunun yerine her zaman aynı nesneyi döndüren [`useRef`](/reference/react/useRef) istersiniz.
59
* `const ref = useRef()` is equivalent to `const [ref, _] = useState(() => createRef(null))`.
60
61
---
0 commit comments