Skip to content

Commit 3d19080

Browse files
Merge pull request #265 from reactjs/fix-context-table-of-contents
Fix naming issue of the context - table of contents
2 parents 25d982f + ce701ad commit 3d19080

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

content/docs/context.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ Context, prop'ları her seviyede manuel olarak geçmek zorunda kalmadan bileşen
88

99
Tipik bir React uygulamasında veri prop'lar aracılığıyla yukarıdan aşağıya aktarılır (üst bileşenlerden alt bileşenlere). Fakat bu tür bir kullanım, uygulamadaki birçok bileşen tarafından ihtiyaç duyulan belirli tipteki prop'lar (örneğin; lokalizasyon, arayüz teması) için kullanışsız olabilir. Context, bileşen ağacın her bir seviyesi üzerinden açıkça bir prop geçirmeden, bileşenler arasında bu gibi değerleri paylaşmanın bir yolunu sağlar.
1010

11-
- [Context Ne Zaman Kullanılır {#when-to-use-context}](#context-ne-zaman-kullanılır-when-to-use-context)
12-
- [Context Kullanmadan Önce {#before-you-use-context}](#context-kullanmadan-önce-before-you-use-context)
13-
- [API {#api}](#api-api)
14-
- [`React.createContext` {#reactcreatecontext}](#reactcreatecontext-reactcreatecontext)
15-
- [`Context.Provider` {#contextprovider}](#contextprovider-contextprovider)
16-
- [`Class.contextType` {#classcontexttype}](#classcontexttype-classcontexttype)
17-
- [`Context.Consumer` {#contextconsumer}](#contextconsumer-contextconsumer)
18-
- [`Context.displayName` {#contextdisplayname}](#contextdisplayname-contextdisplayname)
19-
- [Örnekler {#examples}](#örnekler-examples)
20-
- [Dinamik Context {#dynamic-context}](#dinamik-context-dynamic-context)
21-
- [İç İçe Geçmiş Bileşenden Context Güncelleme {#updating-context-from-a-nested-component}](#i̇ç-i̇çe-geçmiş-bileşenden-context-güncelleme-updating-context-from-a-nested-component)
22-
- [Çoklu Context’leri Kullanma {#consuming-multiple-contexts}](#çoklu-contextleri-kullanma-consuming-multiple-contexts)
23-
- [Uyarılar {#caveats}](#uyarılar-caveats)
24-
- [Eski Sürüm API {#legacy-api}](#eski-sürüm-api-legacy-api)
11+
- [Context Ne Zaman Kullanılır](#when-to-use-context)
12+
- [Context Kullanmadan Önce](#before-you-use-context)
13+
- [API](#api)
14+
- [React.createContext](#reactcreatecontext)
15+
- [Context.Provider](#contextprovider)
16+
- [Class.contextType](#classcontexttype)
17+
- [Context.Consumer](#contextconsumer)
18+
- [Context.displayName](#contextdisplayname)
19+
- [Örnekler](#examples)
20+
- [Dinamik Context](#dynamic-context)
21+
- [İç İçe Geçmiş Bileşenden Context Güncelleme](#updating-context-from-a-nested-component)
22+
- [Çoklu Context’leri Kullanma](#consuming-multiple-contexts)
23+
- [Uyarılar](#caveats)
24+
- [Eski Sürüm API](#legacy-api)
2525

2626
## Context Ne Zaman Kullanılır {#when-to-use-context}
2727

0 commit comments

Comments
 (0)