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/server/index.md
+6-31Lines changed: 6 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,58 +4,33 @@ title: Server React DOM APIs
4
4
5
5
<Intro>
6
6
7
-
<<<<<<< HEAD
8
-
`react-dom/server` API를 사용하면 React 컴포넌트를 서버에서 HTML로 렌더링할 수 있습니다. 이 API는 앱의 최상위 레벨에 있는 서버에서만 초기 HTML을 생성하는 데 사용됩니다. [프레임워크](/learn/start-a-new-react-project#production-grade-react-frameworks)가 대신 호출할 수도 있습니다. 대부분의 컴포넌트는 이를 가져오거나 사용할 필요가 없습니다.
9
-
=======
10
-
The `react-dom/server` APIs let you server-side render React components to HTML. These APIs are only used on the server at the top level of your app to generate the initial HTML. A [framework](/learn/start-a-new-react-project#production-grade-react-frameworks) may call them for you. Most of your components don't need to import or use them.
11
-
>>>>>>> b1a249d597016c6584e4c186daa28b180cc9aafc
7
+
`react-dom/server` API를 사용하면 React 컴포넌트를 서버 측에서 HTML로 렌더링할 수 있습니다. 이 API는 앱의 최상위 레벨에 있는 서버에서만 초기 HTML을 생성하는 데 사용됩니다. [프레임워크](/learn/start-a-new-react-project#production-grade-react-frameworks)가 대신 호출할 수도 있습니다. 대부분의 컴포넌트는 이를 가져오거나 사용할 필요가 없습니다.
12
8
13
9
</Intro>
14
10
15
11
---
16
12
17
13
## Server APIs for Node.js Streams {/*server-apis-for-nodejs-streams*/}
18
14
19
-
다음 메서드들은 [Node.js Streams](https://nodejs.org/api/stream.html)이 있는 환경에서만 사용할 수 있습니다:
15
+
다음 메서드들은 [Node.js Stream](https://nodejs.org/api/stream.html)이 있는 환경에서만 사용할 수 있습니다.
*[`renderToStaticNodeStream`](/reference/react-dom/server/renderToStaticNodeStream)은 상호작용하지 않는 React 트리를 [Node.js Readable Stream.](https://nodejs.org/api/stream.html#readable-streams)로 렌더링합니다.
24
-
=======
25
-
*[`renderToPipeableStream`](/reference/react-dom/server/renderToPipeableStream) renders a React tree to a pipeable [Node.js Stream.](https://nodejs.org/api/stream.html)
0 commit comments