Skip to content

Commit c3ef6c7

Browse files
authored
Merge pull request #593 from reactjs/anilcanboga/react-reference
translate react reference overview page
2 parents 7147153 + 8a8f4ee commit c3ef6c7

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
---
2-
title: React Reference Overview
2+
title: React Başvuru Dökümanına Genel Bakış
33
---
44

55
<Intro>
66

7-
This section provides detailed reference documentation for working with React. For an introduction to React, please visit the [Learn](/learn) section.
7+
Bu bölüm, React ile çalışmak için ayrıntılı başvuru dökumanı belgeleri sağlar. React'e giriş için lütfen [Öğren](/learn) bölümünü ziyaret edin.
88

99
</Intro>
1010

11-
The React reference documentation is broken down into functional subsections:
11+
React başvuru dökumanı belgeleri işlevsel alt bölümlere ayrılmıştır:
1212

1313
## React {/*react*/}
1414

15-
Programmatic React features:
15+
Programatik React özellikleri:
1616

17-
* [Hooks](/reference/react/hooks) - Use different React features from your components.
18-
* [Components](/reference/react/components) - Built-in components that you can use in your JSX.
19-
* [APIs](/reference/react/apis) - APIs that are useful for defining components.
20-
* [Directives](/reference/rsc/directives) - Provide instructions to bundlers compatible with React Server Components.
17+
* [Hooks](/reference/react/hooks) - Bileşenlerinizdeki farklı React özelliklerini kullanın.
18+
* [Bileşenler](/reference/react/components) - JSX'inizde kullanabileceğiniz yerleşik bileşenler.
19+
* [APIs](/reference/react/apis) - Bileşenleri tanımlamak için yararlı olan API'ler.
20+
* [Direktifler](/reference/rsc/directives) - React Sunucu Bileşenleri ile uyumlu paketleyicilere talimatlar sağlayın.
2121

2222
## React DOM {/*react-dom*/}
2323

24-
React-dom contains features that are only supported for web applications (which run in the browser DOM environment). This section is broken into the following:
24+
React-dom, yalnızca web uygulamaları (tarayıcı DOM ortamında çalışan) için desteklenen özellikler içerir. Bu bölüm aşağıdakilere ayrılmıştır:
2525

26-
* [Hooks](/reference/react-dom/hooks) - Hooks for web applications which run in the browser DOM environment.
27-
* [Components](/reference/react-dom/components) - React supports all of the browser built-in HTML and SVG components.
28-
* [APIs](/reference/react-dom) - The `react-dom` package contains methods supported only in web applications.
29-
* [Client APIs](/reference/react-dom/client) - The `react-dom/client` APIs let you render React components on the client (in the browser).
30-
* [Server APIs](/reference/react-dom/server) - The `react-dom/server` APIs let you render React components to HTML on the server.
26+
* [Hooks](/reference/react-dom/hooks) - Tarayıcı DOM ortamında çalışan web uygulamaları için hooks.
27+
* [Bileşenler](/reference/react-dom/components) - React, tarayıcıda yerleşik HTML ve SVG bileşenlerinin tümünü destekler.
28+
* [APIs](/reference/react-dom) - `react-dom` paketi yalnızca web uygulamalarında desteklenen yöntemleri içerir.
29+
* [İstemci APIs](/reference/react-dom/client) - `react-dom/client` API'leri, React bileşenlerini istemcide (tarayıcıda) oluşturmanızı sağlar.
30+
* [Sunucu APIs](/reference/react-dom/server) - `react-dom/server` API'leri React bileşenlerini sunucuda HTML'ye dönüştürmenizi sağlar.
3131

32-
## Rules of React {/*rules-of-react*/}
32+
## React Kuralları {/*rules-of-react*/}
3333

34-
React has idioms — or rules — for how to express patterns in a way that is easy to understand and yields high-quality applications:
34+
React, kalıpların anlaşılması kolay ve yüksek kaliteli uygulamalar üretecek şekilde nasıl ifade edileceğine ilişkin deyimlere — veya kurallara — sahiptir:
3535

36-
* [Components and Hooks must be pure](/reference/rules/components-and-hooks-must-be-pure) – Purity makes your code easier to understand, debug, and allows React to automatically optimize your components and hooks correctly.
37-
* [React calls Components and Hooks](/reference/rules/react-calls-components-and-hooks) – React is responsible for rendering components and hooks when necessary to optimize the user experience.
38-
* [Rules of Hooks](/reference/rules/rules-of-hooks)Hooks are defined using JavaScript functions, but they represent a special type of reusable UI logic with restrictions on where they can be called.
36+
* [Bileşenler ve Hook'lar saf olmalıdır](/reference/rules/components-and-hooks-must-be-pure) – Purity, kodunuzun anlaşılmasını, hata ayıklamasını kolaylaştırır ve React'in bileşenlerinizi ve hook'larınızın otomatik olarak doğru şekilde optimize etmesini sağlar.
37+
* [React Bileşenleri ve Hook'ları çağırır](/reference/rules/react-calls-components-and-hooks) – React, kullanıcı deneyimini optimize etmek için gerektiğinde bileşenleri ve hook'ları oluşturmaktan sorumludur.
38+
* [Hook Kuralları](/reference/rules/rules-of-hooks)Hook'lar JavaScript fonksiyonları kullanılarak tanımlanır, ancak nerede çağrılabilecekleri konusunda kısıtlamaları olan özel bir yeniden kullanılabilir UI mantığı türünü temsil ederler.
3939

40-
## Legacy APIs {/*legacy-apis*/}
40+
## Eski API'ler {/*legacy-apis*/}
4141

42-
* [Legacy APIs](/reference/react/legacy) - Exported from the `react` package, but not recommended for use in newly written code.
42+
* [Eski API'ler](/reference/react/legacy) - `react` paketinden dışa aktarılır, ancak yeni yazılan kodlarda kullanılması önerilmez.

0 commit comments

Comments
 (0)