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
These APIs can be used to make apps faster by pre-loading resources such as scripts, stylesheets, and fonts as soon as you know you need them, for example before navigating to another page where the resources will be used.
23
23
24
24
[React-based frameworks](/learn/start-a-new-react-project) frequently handle resource loading for you, so you might not have to call these APIs yourself. Consult your framework's documentation for details.
25
25
26
-
*[`prefetchDNS`](/reference/react-dom/prefetchDNS) lets you prefetch the IP address of a DNS domain name that you expect to connect to.
27
26
*[`preconnect`](/reference/react-dom/preconnect) lets you connect to a server you expect to request resources from, even if you don't know what resources you'll need yet.
28
-
*[`preload`](/reference/react-dom/preload) lets you fetch a stylesheet, font, image, or external script that you expect to use.
29
-
*[`preloadModule`](/reference/react-dom/preloadModule) lets you fetch an ESM module that you expect to use.
27
+
*[`prefetchDNS`](/reference/react-dom/prefetchDNS) lets you prefetch the IP address of a DNS domain name that you expect to connect to.
30
28
*[`preinit`](/reference/react-dom/preinit) lets you fetch and evaluate an external script or fetch and insert a stylesheet.
31
29
*[`preinitModule`](/reference/react-dom/preinitModule) lets you fetch and evaluate an ESM module.
30
+
*[`preload`](/reference/react-dom/preload) lets you fetch a stylesheet, font, image, or external script that you expect to use.
31
+
*[`preloadModule`](/reference/react-dom/preloadModule) lets you fetch an ESM module that you expect to use.
32
32
33
33
---
34
34
35
-
## Entry points {/*entry-points*/}
35
+
## 진입점 {/*entry-points*/}
36
36
37
-
`react-dom`package 는 두 개의 진입점을 제공합니다:
37
+
`react-dom`패키지는 두 개의 진입점<sup>Entry Points</sup>을 제공합니다.
*[`findDOMNode`](/reference/react-dom/findDOMNode)는 클래스 컴포넌트 인스턴스와 일치하는 가장 가까운 DOM 노드를 찾습니다.
54
-
*[`hydrate`](/reference/react-dom/hydrate)는 트리를 서버 HTML에서 생성된 DOM으로 마운트합니다. 더 이상 사용되지 않으며 [`hydrateRoot`](/reference/react-dom/client/hydrateRoot)를 권장합니다.
55
-
*[`render`](/reference/react-dom/render)는 트리를 DOM으로 마운트합니다. 더 이상 사용되지 않으며 [`createRoot`](/reference/react-dom/client/createRoot)를 권장합니다.
56
-
*[`unmountComponentAtNode`](/reference/react-dom/unmountComponentAtNode)는 트리를 DOM에서 마운트 해제합니다. 더 이상 사용되지 않으며 [`root.unmount()`](/reference/react-dom/client/createRoot#root-unmount)를 권장합니다.
57
-
=======
58
-
These APIs were removed in React 19:
59
-
>>>>>>> b1a249d597016c6584e4c186daa28b180cc9aafc
46
+
아래 API는 React 19에서 제거되었습니다.
60
47
61
48
*[`findDOMNode`](https://18.react.dev/reference/react-dom/findDOMNode): see [alternatives](https://18.react.dev/reference/react-dom/findDOMNode#alternatives).
62
49
*[`hydrate`](https://18.react.dev/reference/react-dom/hydrate): use [`hydrateRoot`](/reference/react-dom/client/hydrateRoot) instead.
0 commit comments