Get-JS / React_basic

Practice the overall basic skills used in React
0 stars 0 forks source link

용어 (Render vs Mount) #6

Open yjkwon07 opened 4 years ago

yjkwon07 commented 4 years ago

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.

yjkwon07 commented 3 years ago