"
-The [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) lets you specify the title of the document.
+O [componente `` do navegador incorporado](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) permite que você especifique o título do documento.
```js
-My Blog
+Meu Blog
```
@@ -16,45 +16,45 @@ The [built-in browser `` component](https://developer.mozilla.org/en-US/d
---
-## Reference {/*reference*/}
+## Referência {/*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.
+Para especificar o título do documento, renderize o [componente `` de navegador incorporado](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). Você pode renderizar o `` de qualquer componente, e o React sempre colocará o elemento DOM correspondente no head do documento.
```js
-My Blog
+Meu Blog
```
-[See more examples below.](#usage)
+[Veja mais exemplos abaixo.](#usage)
#### Props {/*props*/}
-`` supports all [common element props.](/reference/react-dom/components/common#props)
+`` suporta todas as [props de elementos comuns.](/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`: `` aceita apenas texto como um filho. Este texto se tornará o título do documento. Você também pode passar seus próprios componentes desde que eles renderizem apenas texto.
-#### Special rendering behavior {/*special-rendering-behavior*/}
+#### Comportamento de renderização especial {/*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.
+O React sempre colocará o elemento DOM correspondente ao componente `` dentro do `` do documento, independentemente de onde na árvore React ele for renderizado. O `` é o único lugar válido para `` existir dentro do DOM, mas é conveniente e mantém as coisas compostas se um componente representando uma página específica pode renderizar seu próprio ``.
-There are two exception to this:
-* If `` is within an `