November 2019
Beginner
804 pages
20h 1m
English
A key thing to understand about React is that its rendering engine is kept separate from the core library. Thanks to that separation of concerns, many different renderers have been created.
For example, react-dom is the default renderer for the web platform; it takes care of rendering components to HTML DOM elements. To do that, React DOM uses a virtual DOM, a technique that we have discussed in the previous chapters and that React has made popular.
When targeting mobile platforms, there is a more adequate solution that you can use: react-native. Check out the resources listed at the end of this chapter to discover other ones.
Read now
Unlock full access