[React] State
출처: https://ko.reactjs.org/docs/faq-state.html 컴포넌트 State – React A JavaScript library for building user interfaces ko.reactjs.org State and Lifecycle – React A JavaScript library for building user interfaces ko.reactjs.org 1. Props VS State 공통점 두 객체 모두 일반 JavaScript 객체이다. 두 객체 모두 렌더링 결과물(현재 화면에 보이는 것)에 영향을 주는 정보를 갖고 있다. 차이점 props는 (함수 매개변수처럼) 컴포넌트에 전달된다. 또한, props는 순수함수처럼(읽기전용) 사용해야하므로 컴포넌트 내부에..
2023.03.01