
2-1 렌더링 element
·
React
react에서 element란 리액트 앱을 구성하는 가장 작은 블록들이다.기존에 우리가 자주사용하던 element는 react의 element가 아닌 DOM Element 이다.React Element와 DOM element의 차이Virtual DOM에 존재하는 element가 react ElementBrowser DOM에 존재하는 element가 Dom Element따라서 react element는 dom element의 가상 표현이라고 볼 수 있다. Elements의 생김새React Elements는 자바스크립트 객체 형태로 존재한다.function Button(props) { return { {props.children} ..