diff --git a/src/content/reference/react-dom/components/title.md b/src/content/reference/react-dom/components/title.md
index 24b2aba2f..c1b523f37 100644
--- a/src/content/reference/react-dom/components/title.md
+++ b/src/content/reference/react-dom/components/title.md
@@ -5,17 +5,17 @@ canary: true
-React's extensions to `` are currently only available in React's canary and experimental channels. In stable releases of React `` works only as a [built-in browser HTML component](https://react.dev/reference/react-dom/components#all-html-components). Learn more about [React's release channels here](/community/versioning-policy#all-release-channels).
+Ekstensi React untuk `` saat ini hanya tersedia di kanal *canary* dan eksperimental React. Pada rilis stabil React, `` hanya berfungsi sebagai [komponen HTML bawaan peramban](https://react.dev/reference/react-dom/components#all-html-components). Pelajari lebih lanjut tentang [kanal rilis React di sini](/community/versioning-policy#all-release-channels).
-The [built-in browser `` component](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) lets you specify the title of the document.
+[Komponen bawaan peramban ``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title) memungkinkan Anda untuk menentukan judul dari dokumen.
```js
-My Blog
+Blog Saya
```
@@ -24,45 +24,45 @@ The [built-in browser `
` component](https://developer.mozilla.org/en-US/d
---
-## Reference {/*reference*/}
+## Referensi {/*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.
+Untuk menentukan judul dokmen, render [komponen bawaan peramban ``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title). Anda dapat me-*render* `` dari komponen apapun dan React akan selalu menempatkan elemen DOM yang sesuai di *document head*.
```js
-My Blog
+Blog Saya
```
-[See more examples below.](#usage)
+[Lihat contoh-contoh lainnya di bawah ini.](#usage)
#### Props {/*props*/}
-`` supports all [common element props.](/reference/react-dom/components/common#props)
+`` mendukung semua [element props yang umum.](/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`: `` hanya menerima teks sebagai anak. Teks ini akan menjadi judul dokumen. Anda juga dapat meng-oper komponen Anda sendiri selama komponen tersebut hanya me-*render* teks.
-#### Special rendering behavior {/*special-rendering-behavior*/}
+#### Perilaku *render*-ing khusus {/*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 akan selalu menempatkan elemen DOM yang sesuai dengan komponen `` di dalam `` dokumen, di mana pun elemen tersebut di-*render* di pohon React. `` adalah satu-satunya tempat yang valid untuk `` berada dalam DOM, namun tetap mudah dan membuat segala sesuatunya tetap dapat disusun jika komponen yang mewakili laman tertentu dapat me-*render* ``-nya sendiri.
-There are two exception to this:
-* If `` is within an `