4-rendering-elements
4. Rendering Elements
[React] IV. Rendering Elements
1. Element란?
1) React element
2) React element의 형태
{
type: Button, #리액트 컴포넌트의 이름, 혹은 html 태그 이름 'button'
props: {
className: 'hey',
children:{
type:'b',
props: {
children:'Hello, element!'
}
}
}
}2. React Element의 특징
Immutable, 불변성을 가진다.
3. element 렌더링
Root DOM Node
Last updated