Skip to content

Commit c419e6e

Browse files
authored
Merge branch 'main' into sync-5138e605
2 parents d1f0a80 + 663ad9a commit c419e6e

File tree

1 file changed

+5
-5
lines changed
  • src/content/reference/react-dom/static

1 file changed

+5
-5
lines changed

src/content/reference/react-dom/static/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ title: Static React DOM APIs
44

55
<Intro>
66

7-
The `react-dom/static` APIs let you generate static HTML for React components. They have limited functionality compared to the streaming APIs. 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.
7+
`react-dom/static` API를 사용하면 React 컴포넌트를 위한 정적 HTML을 생성할 수 있습니다. 이는 스트리밍 API에 비해 제한된 기능을 가지고 있습니다. [프레임워크](/learn/start-a-new-react-project#production-grade-react-frameworks)가 대신 호출할 수도 있습니다. 대부분의 컴포넌트는 이를 가져오거나 사용할 필요가 없습니다.
88

99
</Intro>
1010

1111
---
1212

1313
## Static APIs for Web Streams {/*static-apis-for-web-streams*/}
1414

15-
These methods are only available in the environments with [Web Streams](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API), which includes browsers, Deno, and some modern edge runtimes:
15+
다음 메서드들은 브라우저, Deno, 및 일부 최신 엣지 런타임을 포함하는 [Web Streams](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) 환경에서만 사용할 수 있습니다.
1616

17-
* [`prerender`](/reference/react-dom/static/prerender) renders a React tree to static HTML with a [Readable Web Stream.](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream)
17+
* [`prerender`](/reference/react-dom/static/prerender)React 트리를 [Readable Web Stream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream)을 사용하여 정적 HTML로 렌더링합니다.
1818

1919

2020
---
2121

2222
## Static APIs for Node.js Streams {/*static-apis-for-nodejs-streams*/}
2323

24-
These methods are only available in the environments with [Node.js Streams](https://nodejs.org/api/stream.html):
24+
다음 메서드들은 [Node.js Streams](https://nodejs.org/api/stream.html) 환경에서만 사용할 수 있습니다.
2525

26-
* [`prerenderToNodeStream`](/reference/react-dom/static/prerenderToNodeStream) renders a React tree to static HTML with a [Node.js Stream.](https://nodejs.org/api/stream.html)
26+
* [`prerenderToNodeStream`](/reference/react-dom/static/prerenderToNodeStream)React 트리를 [Node.js Stream](https://nodejs.org/api/stream.html)을 사용하여 정적 HTML로 렌더링합니다.
2727

2828

0 commit comments

Comments
 (0)