const handleClick = () => { setCount(1) setCount((c)=>c+3) setCount(7) setCount((c)+c+10) }
이렇게 되면 모아서 배치 처리함. 렌더링은 한번만 일어남.