Skip to content

Commit 08a711b

Browse files
committed
docs(content): remove redundant English explanation on React rendering
The removed English text duplicated the existing Korean content, ensuring conciseness and a focus on the native language context for improved readability.
1 parent e24e4bf commit 08a711b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/content/learn/render-and-commit.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,6 @@ img { margin: 0 10px 10px 0; }
153153
* **초기 렌더링의 경우** React는 [`appendChild()`](https://developer.mozilla.org/docs/Web/API/Node/appendChild) DOM API를 사용하여 생성한 모든 DOM 노드를 화면에 표시합니다.
154154
* **리렌더링의 경우** React는 필요한 최소한의 작업(렌더링하는 동안 계산된 것!)을 적용하여 DOM이 최신 렌더링 출력과 일치하도록 합니다.
155155

156-
After rendering (calling) your components, React will modify the DOM.
157-
158-
* **For the initial render,** React will use the [`appendChild()`](https://developer.mozilla.org/docs/Web/API/Node/appendChild) DOM API to put all the DOM nodes it has created on screen.
159-
* **For re-renders,** React will apply the minimal necessary operations (calculated while rendering!) to make the DOM match the latest rendering output.
160-
161156
**React는 렌더링 간에 차이가 있는 경우에만 DOM 노드를 변경합니다.** 예를 들어 매초 부모로부터 전달된 다른 props로 다시 렌더링하는 컴포넌트가 있습니다. `<input>`에 텍스트를 입력하여 `value`를 업데이트 하지만 컴포넌트가 리렌더링될 때 텍스트가 사라지지 않습니다.
162157

163158
<Sandpack>

0 commit comments

Comments
 (0)