You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/reference/react-dom/index.md
+15-16Lines changed: 15 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -4,40 +4,39 @@ title: React DOM APIs
4
4
5
5
<Intro>
6
6
7
-
The`react-dom`package contains methods that are only supported for the web applications (which run in the browser DOM environment). They are not supported for React Native.
7
+
*package*`react-dom`berisi *method* yang hanya didukung untuk aplikasi web (yang berjalan di lingkungan *DOM* peramban). Mereka tidak didukung untuk React Native.
8
8
9
9
</Intro>
10
10
11
11
---
12
12
13
-
## APIs {/*apis*/}
13
+
## API {/*apis*/}
14
14
15
-
These APIs can be imported from your components. They are rarely used:
15
+
API ini dapat di import dari komponen. Namun, jarang digunakan:
16
16
17
-
*[`createPortal`](/reference/react-dom/createPortal)lets you renderchild components in a different part of the DOMtree.
18
-
*[`flushSync`](/reference/react-dom/flushSync)lets you force React to flush a state update and update the DOM synchronously.
17
+
*[`createPortal`](/reference/react-dom/createPortal)memungkinkan Anda untuk me-*render**child component* ke dalam bagian *DOM**tree* yang berbeda.
18
+
*[`flushSync`](/reference/react-dom/flushSync)memungkinkan Anda untuk memaksa React untuk segera mengeksekusi pembaruan *state* dan memperbarui *DOM* secara sinkron.
19
19
20
20
---
21
21
22
-
## Entry points {/*entry-points*/}
22
+
## Titik masuk {/*entry-points*/}
23
23
24
-
The`react-dom`package provides two additional entry points:
24
+
*Package*`react-dom`menyediakan dua titik masuk tambahan:
25
25
26
-
*[`react-dom/client`](/reference/react-dom/client)contains APIs to renderReact components on the client (in the browser).
27
-
*[`react-dom/server`](/reference/react-dom/server)contains APIs to renderReact components on the server.
26
+
*[`react-dom/client`](/reference/react-dom/client)berisi API untuk me-*render* komponen React di sisi klien (di dalam peramban).
27
+
*[`react-dom/server`](/reference/react-dom/server)berisi API untuk me-*render* komponen React di sisi server.
28
28
29
29
---
30
30
31
-
## Deprecated APIs {/*deprecated-apis*/}
31
+
## API Usang {/*deprecated-apis*/}
32
32
33
33
<Deprecated>
34
34
35
-
These APIs will be removed in a future major version of React.
35
+
API ini akan dihapus pada versi utama React yang akan datang.
36
36
37
37
</Deprecated>
38
38
39
-
*[`findDOMNode`](/reference/react-dom/findDOMNode) finds the closest DOM node corresponding to a class component instance.
40
-
*[`hydrate`](/reference/react-dom/hydrate) mounts a tree into the DOM created from server HTML. Deprecated in favor of [`hydrateRoot`](/reference/react-dom/client/hydrateRoot).
41
-
*[`render`](/reference/react-dom/render) mounts a tree into the DOM. Deprecated in favor of [`createRoot`](/reference/react-dom/client/createRoot).
42
-
*[`unmountComponentAtNode`](/reference/react-dom/unmountComponentAtNode) unmounts a tree from the DOM. Deprecated in favor of [`root.unmount()`.](/reference/react-dom/client/createRoot#root-unmount)
43
-
39
+
*[`findDOMNode`](/reference/react-dom/findDOMNode) digunakan untuk mencari elemen *DOM* terdekat yang sesuai dengan instansi *class component*.
40
+
*[`hydrate`](/reference/react-dom/hydrate) digunakan untuk menampilkan sebuah struktur *tree* pada *DOM* yang telah dibuat sebelumnya melalui server HTML. Fungsi ini sudah tidak digunakan lagi, dan diganti dengan [`hydrateRoot`](/reference/react-dom/client/hydrateRoot).
41
+
*[`render`](/reference/react-dom/render) digunakan untuk memasang sebuah struktur *tree* pada *DOM*. Fungsi ini juga sudah tidak digunakan lagi, dan diganti dengan [`createRoot`](/reference/react-dom/client/createRoot).
42
+
*[`unmountComponentAtNode`](/reference/react-dom/unmountComponentAtNode) digunakan untuk melepaskan sebuah struktur pohon *tree* dari *DOM*. Fungsi ini sudah tidak digunakan lagi, dan diganti dengan [`root.unmount()`.](/reference/react-dom/client/createRoot#root-unmount)
0 commit comments