useCallback 썸네일형 리스트형 [React] 메모이제이션(memoization) 1. 기본 자료형의 컴포넌트 자체를 메모이제이션 — React.memoimport { useState } from "react";import Counter from "./components/Counter";function App() { const [count, setCount] = useState(0); const [text, setText] = useState(""); const handlerClick = () => { setCount((prev) => { console.log(prev); return prev + 1; }); }; return ( setText(e.target.value)} /> 클릭 );}e.. 더보기 이전 1 다음