We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0257d8a commit 59de71dCopy full SHA for 59de71d
1 file changed
src/content/reference/rules/rules-of-hooks.md
@@ -36,7 +36,7 @@ function useWindowWidth() {
36
Hook'ları (`use` ile başlayan fonksiyonlar) başka herhangi bir durumda çağırmak **desteklenmez**, örneğin:
37
38
* 🔴 Hook'ları koşulların veya döngülerin içinde çağırmayın.
39
-* 🔴 Do not call Hooks after a conditional `return` statement.
+* 🔴 Hook'ları koşullu bir `return` ifadesinden sonra çağırmayın.
40
* 🔴 Do not call Hooks in event handlers.
41
* 🔴 Do not call Hooks in class components.
42
* 🔴 Do not call Hooks inside functions passed to `useMemo`, `useReducer`, or `useEffect`.
0 commit comments