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
React exposes a few built-in components that you can use in your JSX.
7
+
React, JSX'lerinizde kullanabileceğiniz birkaç yerleşik bileşeni sunar.
8
8
9
9
</Intro>
10
10
11
11
---
12
12
13
-
## Built-in components {/*built-in-components*/}
14
-
15
-
*[`<Fragment>`](/reference/react/Fragment), alternatively written as `<>...</>`, lets you group multiple JSX nodes together.
16
-
*[`<Profiler>`](/reference/react/Profiler) lets you measure rendering performance of a React tree programmatically.
17
-
*[`<Suspense>`](/reference/react/Suspense) lets you display a fallback while the child components are loading.
18
-
*[`<StrictMode>`](/reference/react/StrictMode) enables extra development-only checks that help you find bugs early.
13
+
## Yerleşik react bileşenleri {/*built-in-components*/}
14
+
*[`<Fragment>`](/reference/react/Fragment) bileşeni, alternatif olarak `<>...</>` şeklinde yazılır ve birden fazla JSX düğümünü bir araya getirmenize olanak tanır.
15
+
*[`<Profiler>`](/reference/react/Profiler) bileşeni, bir React ağacının render performansını programlama yoluyla ölçmenizi sağlar.
16
+
*[`<Suspense>`](/reference/react/Suspense) bileşeni, alt bileşenler yüklenirken bir yedek içerik görüntülemenizi sağlar.
17
+
*[`<StrictMode>`](/reference/react/StrictMode) bileşeni, hataları erken tespit etmenize yardımcı olan ekstra kontrolleri gerçekleştirir. Yalnızca geliştirme ortamında geçerlidir.
19
18
20
19
---
21
20
22
-
## Your own components {/*your-own-components*/}
21
+
## Kendi bileşenleriniz {/*your-own-components*/}
23
22
24
-
You can also [define your own components](/learn/your-first-component)as JavaScript functions.
23
+
Ayrıca [kendi bileşenlerinizi](/learn/your-first-component)de Javascript fonksiyonları olarak tanımlayabilirsiniz.
0 commit comments