Open yjkwon07 opened 4 years ago
Rendering
은 VirtualDom
까지 반영하는 과정을 말하며, render
혹은 function component
를 호출하여React.createElement
를 만든다.rendering
을 한다는 render
를 호출한다라는 의미로도 해석할 수 있다.Mounting
과 UnMounting
은 reconciliation
이 아닌 DOM
자체가 변경되었을 때, UnMounting
후 다시 Mounting
을 하게 된다.VirtualDom
=> RealDom
으로 전체 반영이된다.
Render vs Mount ??
"Rendering" is any time a function component gets called (or a class-based render method gets called) which returns a set of instructions for creating DOM.
"Mounting" is when React "renders" the component for the first time and actually builds the initial DOM from those instructions.