Skip to content

Commit

Permalink
Merge pull request #548 from TarcosS/translate-components-page
Browse files Browse the repository at this point in the history
react/Components translate
  • Loading branch information
alioguzhan authored May 15, 2024
2 parents 8e90b7f + eab497b commit 55fad11
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/content/reference/react/components.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
---
title: "Built-in React Components"
title: "Yerleşik React Bileşenleri"
---

<Intro>

React exposes a few built-in components that you can use in your JSX.
React, JSX'lerinizde kullanabileceğiniz birkaç yerleşik bileşeni sunar.

</Intro>

---

## Built-in components {/*built-in-components*/}

* [`<Fragment>`](/reference/react/Fragment), alternatively written as `<>...</>`, lets you group multiple JSX nodes together.
* [`<Profiler>`](/reference/react/Profiler) lets you measure rendering performance of a React tree programmatically.
* [`<Suspense>`](/reference/react/Suspense) lets you display a fallback while the child components are loading.
* [`<StrictMode>`](/reference/react/StrictMode) enables extra development-only checks that help you find bugs early.
## Yerleşik react bileşenleri {/*built-in-components*/}
* [`<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.
* [`<Profiler>`](/reference/react/Profiler) bileşeni, bir React ağacının render performansını programlama yoluyla ölçmenizi sağlar.
* [`<Suspense>`](/reference/react/Suspense) bileşeni, alt bileşenler yüklenirken bir yedek içerik görüntülemenizi sağlar.
* [`<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.

---

## Your own components {/*your-own-components*/}
## Kendi bileşenleriniz {/*your-own-components*/}

You can also [define your own components](/learn/your-first-component) as JavaScript functions.
Ayrıca [kendi bileşenlerinizi](/learn/your-first-component) de Javascript fonksiyonları olarak tanımlayabilirsiniz.

0 comments on commit 55fad11

Please sign in to comment.