Skip to content

Commit a232967

Browse files
authored
Fix Korean translation for exposing refs in components
1 parent a730f86 commit a232967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/reference/react/useRef.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ button { display: block; margin-bottom: 20px; }
448448
449449
#### 컴포넌트에 ref 노출하기 {/*exposing-a-ref-to-your-own-component*/}
450450
451-
때로는 부모 컴포넌트가 컴포넌트 내부의 DOM을 조작할 수 있도록 하고 싶을 때가 있습니다. 예를 들어 `MyInput` 컴포넌트를 작성하는 중인데, 부모 컴포넌트가 (부모가 접근할 수 없는) `MyInput`input에 포커스를 맞출 수 있게 하고 싶을 수 있습니다. 이때 부모는 ref를 만들고, 이 ref를 자식 컴포넌트로 넘겨줌으로써 부모가 접근할 수 있도록 만들 수 있습니다. [자세한 내용은 여기에서 확인하세요.](/learn/manipulating-the-dom-with-refs#accessing-another-components-dom-nodes)
451+
때로는 부모 컴포넌트가 컴포넌트 내부의 DOM을 조작할 수 있도록 하고 싶을 때가 있습니다. 예를 들어 `MyInput` 컴포넌트를 작성하는 중인데, 부모 컴포넌트가 (부모가 접근할 수 없는) `MyInput`Input에 포커스를 맞출 수 있게 하고 싶을 수 있습니다. 이때 부모는 `ref` 만들고, 이 `ref` 자식 컴포넌트로 넘겨줌으로써 부모가 접근할 수 있도록 만들 수 있습니다. [자세한 내용은 여기에서 확인하세요.](/learn/manipulating-the-dom-with-refs#accessing-another-components-dom-nodes)
452452
453453
<Sandpack>
454454

0 commit comments

Comments
 (0)