We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b783ffb commit 370e113Copy full SHA for 370e113
content/docs/components-and-props.md
@@ -80,8 +80,8 @@ ReactDOM.render(
80
81
이 예시에서는 다음과 같은 일들이 일어납니다.
82
83
-1. `<Welcome name="Sara" />` 엘리먼트로 `ReactDOM.render()` 를 호출합니다.
84
-2. React는 `{name: 'Sara'}`를 props로 하여 `Welcome`컴포넌트를 호출합니다.
+1. `<Welcome name="Sara" />` 엘리먼트로 `ReactDOM.render()`를 호출합니다.
+2. React는 `{name: 'Sara'}`를 props로 하여 `Welcome` 컴포넌트를 호출합니다.
85
3. `Welcome` 컴포넌트는 결과적으로 `<h1>Hello, Sara</h1>` 엘리먼트를 반환합니다.
86
4. React DOM은 `<h1>Hello, Sara</h1>` 엘리먼트와 일치하도록 DOM을 효율적으로 업데이트합니다.
87
0 commit comments