Skip to content

Commit f4264d1

Browse files
committed
Merge branch 'guesung-usecallback' of https://github.com/guesung/ko.react.dev into guesung-usecallback
2 parents 8006c5a + dfa8ee1 commit f4264d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/reference/react/useCallback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function ProductPage({ productId, referrer, theme }) {
3636
3737
[See more examples below.](#usage)
3838
39-
#### 인자 {/*parameters*/}
39+
#### 매개변수 {/*parameters*/}
4040
4141
* `fn`: 캐시하려는 함수입니다. 이 함수는 아무 인자나 받을 수 있고, 아무 값이나 반환할 수 있습니다. React는 초기 렌더링 중에 함수를 반환(호출하지 않음)합니다. 이후 렌더링할 때 `dependencies`가 마지막 렌더링 이후 변경되지 않은 경우 React는 동일한 함수를 다시 반환합니다. 변경되었다면, React는 현재 렌더링 중에 전달한 함수를 반환하고 나중에 재사용할 수 있는지 확인하기 위해 저장합니다. React는 함수를 호출하지 않습니다. 함수는 호출 시점과 여부를 직접 결정할 수 있도록 반환됩니다.
4242

0 commit comments

Comments
 (0)