Skip to content

Commit 663ad9a

Browse files
authored
docs: Static APIs 페이지 번역 (#1175)
<!-- PR을 보내주셔서 감사합니다! 여러분과 같은 기여자들이 React를 더욱 멋지게 만듭니다! 기존 이슈와 관련된 PR이라면, 아래에 이슈 번호를 추가해주세요. --> Close #1174 # Static APIs 페이지 번역 <!-- 어떤 종류의 PR인지 상세 내용을 작성해주세요. --> 다음 페이지를 번역했습니다. [Static APIs](https://react.dev/reference/react-dom/static) ## 필수 확인 사항 - [x] [기여자 행동 강령 규약<sup>Code of Conduct</sup>](https://github.com/reactjs/ko.react.dev/blob/main/CODE_OF_CONDUCT.md) - [x] [기여 가이드라인<sup>Contributing</sup>](https://github.com/reactjs/ko.react.dev/blob/main/CONTRIBUTING.md) - [x] [공통 스타일 가이드<sup>Universal Style Guide</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/universal-style-guide.md) - [x] [번역을 위한 모범 사례<sup>Best Practices for Translation</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/best-practices-for-translation.md) - [x] [번역 용어 정리<sup>Translate Glossary</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/translate-glossary.md) - [x] [`textlint` 가이드<sup>Textlint Guide</sup>](https://github.com/reactjs/ko.react.dev/blob/main/wiki/textlint-guide.md) - [x] [맞춤법 검사<sup>Spelling Check</sup>](https://nara-speller.co.kr/speller/) ## 선택 확인 사항 - [ ] 번역 초안 작성<sup>Draft Translation</sup> - [ ] 리뷰 반영<sup>Resolve Reviews</sup>
1 parent b6eae7d commit 663ad9a

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

+5-5
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)