We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eebe9f commit 9a93d0dCopy full SHA for 9a93d0d
content/docs/uncontrolled-components.md
@@ -6,7 +6,7 @@ permalink: docs/uncontrolled-components.html
6
7
대부분 경우에 폼을 구현하는데 [제어 컴포넌트](/docs/forms.html)를 사용하는 것이 좋습니다. 제어 컴포넌트에서 폼 데이터는 React 컴포넌트에서 다루어집니다. 대안인 비제어 컴포넌트는 DOM 자체에서 폼 데이터가 다루어집니다.
8
9
-모든 state 업데이트에 대한 이벤트 처리기를 작성하는 대신 비제어 컴포넌트를 만들려면 [ref를 사용](/docs/refs-and-the-dom.html)하여 DOM에서 폼 값을 가져올 수 있습니다.
+모든 state 업데이트에 대한 이벤트 핸들러를 작성하는 대신 비제어 컴포넌트를 만들려면 [ref를 사용](/docs/refs-and-the-dom.html)하여 DOM에서 폼 값을 가져올 수 있습니다.
10
11
예를 들어 아래 코드는 비제어 컴포넌트에 단일 이름을 허용합니다.
12
@@ -80,4 +80,4 @@ React에서 `<input type="file" />`은 프로그래밍적으로 값을 설정
80
81
`embed:uncontrolled-components/input-type-file.js`
82
83
-[CodePen에서 실행하기](codepen://uncontrolled-components/input-type-file)
+**[CodePen에서 실행하기](codepen://uncontrolled-components/input-type-file)**
0 commit comments