diff --git a/src/content/reference/react-dom/unmountComponentAtNode.md b/src/content/reference/react-dom/unmountComponentAtNode.md
index 12f11dc74d..445c132e1d 100644
--- a/src/content/reference/react-dom/unmountComponentAtNode.md
+++ b/src/content/reference/react-dom/unmountComponentAtNode.md
@@ -4,15 +4,15 @@ title: unmountComponentAtNode
-This API will be removed in a future major version of React.
+API ini akan dihapus pada versi mayor React yang akan datang.
-In React 18, `unmountComponentAtNode` was replaced by [`root.unmount()`](/reference/react-dom/client/createRoot#root-unmount).
+Pada React 18, `unmountComponentAtNode` sudah digantikan oleh [`root.unmount()`](/reference/react-dom/client/createRoot#root-unmount).
-`unmountComponentAtNode` removes a mounted React component from the DOM.
+`unmountComponentAtNode` menghapus komponen React yang telah terpasang dari DOM.
```js
unmountComponentAtNode(domNode)
@@ -24,11 +24,11 @@ unmountComponentAtNode(domNode)
---
-## Reference {/*reference*/}
+## Referensi {/*reference*/}
### `unmountComponentAtNode(domNode)` {/*unmountcomponentatnode*/}
-Call `unmountComponentAtNode` to remove a mounted React component from the DOM and clean up its event handlers and state.
+Panggil `unmountComponentAtNode` untuk menghapus komponen React yang telah terpasang dari DOM dan membersihkan *event handler* beserta *state*-nya.
```js
import { unmountComponentAtNode } from 'react-dom';
@@ -39,21 +39,21 @@ render(, domNode);
unmountComponentAtNode(domNode);
```
-[See more examples below.](#usage)
+[Lihat contoh lainnya di bawah ini.](#usage)
-#### Parameters {/*parameters*/}
+#### Parameter {/*parameters*/}
-* `domNode`: A [DOM element.](https://developer.mozilla.org/en-US/docs/Web/API/Element) React will remove a mounted React component from this element.
+* `domNode`: Sebuah [elemen DOM.](https://developer.mozilla.org/en-US/docs/Web/API/Element) React akan menghapus komponen React yang terpasang dari elemen ini.
-#### Returns {/*returns*/}
+#### Kembalian {/*returns*/}
-`unmountComponentAtNode` returns `true` if a component was unmounted and `false` otherwise.
+`unmountComponentAtNode` mengembalikan `true` jika komponen tersebut telah berhasil dilepas dan `false` jika tidak.
---
-## Usage {/*usage*/}
+## Penggunaan {/*usage*/}
-Call `unmountComponentAtNode` to remove a mounted React component from a browser DOM node and clean up its event handlers and state.
+Panggil `unmountComponentAtNode` untuk menghapus komponen React yang sudah terpasang dari simpul DOM peramban dan bersihkan *event handler* beserta *state*-nya.
```js [[1, 5, ""], [2, 5, "rootNode"], [2, 8, "rootNode"]]
import { render, unmountComponentAtNode } from 'react-dom';
@@ -67,11 +67,11 @@ unmountComponentAtNode(rootNode);
```
-### Removing a React app from a DOM element {/*removing-a-react-app-from-a-dom-element*/}
+### Menghapus aplikasi React dari elemen DOM {/*removing-a-react-app-from-a-dom-element*/}
-Occasionally, you may want to "sprinkle" React on an existing page, or a page that is not fully written in React. In those cases, you may need to "stop" the React app, by removing all of the UI, state, and listeners from the DOM node it was rendered to.
+Terkadang, Anda mungkin ingin "menghiasi" dengan React halaman yang sudah ada, atau halaman yang tidak sepenuhnya ditulis dalam React. Dalam kasus tersebut, Anda mungkin perlu "menghentikan" aplikasi React, dengan menghapus semua UI, *state*, dan *listener* dari simpul DOM yang di-*render*.
-In this example, clicking "Render React App" will render a React app. Click "Unmount React App" to destroy it:
+Pada contoh ini, mengklik "*Render* Aplikasi React" akan me-*render* aplikasi React. Klik "Lepas Aplikasi React" untuk menghancurkannya:
@@ -80,8 +80,8 @@ In this example, clicking "Render React App" will render a React app. Click "Unm
My app
-
-
+
+