DEV Community

Discussion on: Beginner's Guide to React

Collapse
 
ahmedalalmi profile image
Ahmed Elalmi

Thanks, your blog is very benefits, but I think you should add some points.
The first is: react.js rendered from the virtual DOM, not from the DOM that makes react.js very fast, and this is the deferent between React and other libraries or frameworks (like angular render from the DOM).
the second point is: the difference between component and function is the component is stateful (take a state) and the function is stateless (not take a state).
you said that but you did not talk about stateful and stateless and these are very important in react.
and thank you again for your time and your effort. :)

Collapse
 
ajmalhassan profile image
Ajmal Hassan

Except that now functional components can use state with hooks.

Collapse
 
ahmedalalmi profile image
Ahmed Elalmi

Exactly but this, when you master react not a beggar.