Skip to content

Commit

Permalink
fix broken url in hooks-reference.md (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
dididy committed Jul 24, 2020
1 parent 702e095 commit 5237f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/hooks-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const memoizedCallback = useCallback(
const memoizedValue = useMemo(() => computeExpensiveValue(a, b), [a, b]);
```

[메모이제이션된](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%AA%A8%EC%9D%B4%EC%A0%9C%EC%9D%B4%EC%85%98n) 값을 반환합니다.
[메모이제이션된](https://ko.wikipedia.org/wiki/%EB%A9%94%EB%AA%A8%EC%9D%B4%EC%A0%9C%EC%9D%B4%EC%85%98) 값을 반환합니다.

"생성(create)" 함수와 그것의 의존성 값의 배열을 전달하세요. `useMemo`는 의존성이 변경되었을 때에만 메모이제이션된 값만 다시 계산 할 것입니다. 이 최적화는 모든 렌더링 시의 고비용 계산을 방지하게 해 줍니다.

Expand Down

0 comments on commit 5237f9e

Please sign in to comment.