Skip to content

Commit

Permalink
Merge pull request #841 from fpetrakov/reference/react/components-tra…
Browse files Browse the repository at this point in the history
…nslation

Перевод referece/react/components
  • Loading branch information
ntishkevich authored May 18, 2023
2 parents ed4af79 + 219a3e2 commit b3eaf12
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/content/reference/react/components.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
---
title: "Built-in React Components"
title: "Встроенные React-компоненты"
---

<Intro>

React exposes a few built-in components that you can use in your JSX.
React из коробки предоставляет несколько компонентов.

</Intro>

---

## Built-in components {/*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.
* [`<Fragment>`](/reference/react/Fragment), или `<>...</>`, объединяет несколько JSX узлов.
* [`<Profiler>`](/reference/react/Profiler) позволяет вам измерять производительность рендеринга React-дерева программно.
* [`<Suspense>`](/reference/react/Suspense) отображает заглушку, пока загружаются дочерние компоненты.
* [`<StrictMode>`](/reference/react/StrictMode) включает дополнительные проверки в режиме разработки, они помогают находить баги раньше.

---

## Your own components {/*your-own-components*/}
## Ваши компоненты {/*your-own-components*/}

You can also [define your own components](/learn/your-first-component) as JavaScript functions.
Вы также можете [создавать свои компоненты](/learn/your-first-component), используя JavaScript-функции.

0 comments on commit b3eaf12

Please sign in to comment.