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/rules/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,9 @@ Kod tabanınızın React Kurallarına uymasına yardımcı olmak için React'in
36
36
37
37
## React Bileşenleri ve Hook'ları çağırır {/*react-calls-components-and-hooks*/}
38
38
39
-
[React is responsible for rendering components and hooks when necessary to optimize the user experience.](/reference/rules/react-calls-components-and-hooks)It is declarative: you tell React what to render in your component’s logic, and React will figure out how best to display it to your user.
39
+
[React, kullanıcı deneyimini optimize etmek için gerektiğinde bileşenleri ve hook'ları oluşturmaktan sorumludur](/reference/rules/react-calls-components-and-hooks)Bildirimseldir: React'e bileşeninizin mantığında neyi oluşturacağını söylersiniz ve React bunu kullanıcınıza en iyi nasıl göstereceğini bulur.
40
40
41
-
*[Never call component functions directly](/reference/rules/react-calls-components-and-hooks#never-call-component-functions-directly)– Components should only be used in JSX. Don’t call them as regular functions.
41
+
*[Asla bileşen fonksiyonlarını doğrudan çağırmayın](/reference/rules/react-calls-components-and-hooks#never-call-component-functions-directly)- Bileşenler yalnızca JSX içinde kullanılmalıdır. Onları normal fonksiyonlar olarak çağırmayın.
42
42
*[Never pass around hooks as regular values](/reference/rules/react-calls-components-and-hooks#never-pass-around-hooks-as-regular-values) – Hooks should only be called inside of components. Never pass it around as a regular value.
0 commit comments