Skip to content
Younho9 Notes
Main Navigation
Docs
References
Index
Random
Types
Notes
Journals
Graph
GitHub
Twitter
LinkedIn
Facebook
Instagram
Unsplash
Spotify
Appearance
GitHub
Twitter
LinkedIn
Facebook
Instagram
Unsplash
Spotify
Menu
Return to top
On this page
Table of Contents for current page
References
React
Title
React
Category
React
Tags
react
Aliases
React
Created
2 years ago
Updated
last year
컴포넌트가 동일한 props로 동일한 결과를 렌더링해낸다면,
React.memo로 감싸서 메모이징(Memoizing)된 컴포넌트 결과를 사용한다.
사용하지 않으면 다시 컴포넌트 내부를 호출
메모리에 기록하는 것이기 때문에, 불필요하게 모든 컴포넌트에 사용한다면 메모리 사용량이 증가할 것.
반드시 성능 측정(Profiling)과 동반하여 사용해야한다.
References
#
React 최상위 API – React (reactjs.org)
memo()를 하기 전에 — Overreacted