Skip to content

Commit 1752bc3

Browse files
authored
docs: remove original text in server-components.md (#1214)
# 서버 컴포넌트 문서 내 원문 제거 및 불필요한 링크 제거 - 서버 컴포넌트 문서에서 번역문과 중복되는 원문을 제거했습니다. - 아래 문장에서 동작하지 않는 링크에 대해서 원본 문서에서도 사용되지 않는 링크로 확인되어 제거 조치했습니다. - 혹시 이 조치에 대해 잘못된 점이 있다면 알려주시면 감사하겠습니다. https://github.com/reactjs/ko.react.dev/blob/f9788af3b2cbdca890adacf2b690280918dddf40/src/content/reference/rsc/server-components.md?plain=1#L302 ## 필수 확인 사항 - [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 f9788af commit 1752bc3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/content/reference/rsc/server-components.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,5 +299,4 @@ function Comments({commentsPromise}) {
299299

300300
`note` 콘텐츠는 페이지 렌더링에 중요한 데이터이므로 서버에서 `await` 합니다. 댓글은 중요도가 낮아 페이지 아래에 표시되므로 서버에서 Promise를 시작하고 클라이언트에서 `use` API를 사용하여 기다립니다. 이는 클라이언트에서 지연되지만 `note` 콘텐츠가 렌더링되는 것을 차단하지 않습니다.
301301

302-
비동기 컴포넌트는 [클라이언트에서 지원되지 않으므로](#why-cant-i-use-async-components-on-the-client) Promise를 `use`로 기다립니다.
303-
Since async components are not supported on the client, we await the promise with `use`.
302+
비동기 컴포넌트는 클라이언트에서 지원되지 않으므로 Promise를 `use`로 기다립니다.

0 commit comments

Comments
 (0)