"
-The [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) lets you specify the title of the document.
+Встроенный браузерный компонент [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) позволяет задать заголовок документа.
```js
-My Blog
+Мой блог
```
@@ -16,45 +16,45 @@ The [built-in browser `` component](https://developer.mozilla.org/en-US/d
---
-## Reference {/*reference*/}
+## Справочник {/*reference*/}
### `` {/*title*/}
-To specify the title of the document, render the [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). You can render `` from any component and React will always place the corresponding DOM element in the document head.
+Чтобы задать заголовок документа, отрендерите [встроенный браузерный компонент ``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). Вы можете рендерить `` из любого компонента, и React всегда поместит соответствующий DOM-элемент в `` документа.
```js
-My Blog
+Мой блог
```
-[See more examples below.](#usage)
+[См. больше примеров ниже.](#usage)
-#### Props {/*props*/}
+#### Пропсы {/*props*/}
-`` supports all [common element props.](/reference/react-dom/components/common#props)
+`` поддерживает все [общие пропсы элементов.](/reference/react-dom/components/common#props)
-* `children`: `` accepts only text as a child. This text will become the title of the document. You can also pass your own components as long as they only render text.
+* `children`: `` принимает только текст в качестве дочернего элемента. Этот текст станет заголовком документа. Вы также можете передавать собственные компоненты, если они рендерят только текст.
-#### Special rendering behavior {/*special-rendering-behavior*/}
+#### Особое поведение при рендеринге {/*special-rendering-behavior*/}
-React will always place the DOM element corresponding to the `` component within the document’s ``, regardless of where in the React tree it is rendered. The `` is the only valid place for `` to exist within the DOM, yet it’s convenient and keeps things composable if a component representing a specific page can render its `` itself.
+React всегда будет помещать DOM-элемент, соответствующий компоненту ``, внутрь `` документа, независимо от того, где в дереве React он был отрендерен. `` — единственное допустимое место для `` в DOM, но удобно и сохраняет композитность, если компонент, представляющий конкретную страницу, может сам рендерить свой ``.
-There are two exception to this:
-* If `` is within an `