Creating React elements with JavaScript
We'll start by familiarizing ourselves with fundamental React terminology. It will help us build a clear picture of what the React library is made of. This terminology will most likely update over time, so keep an eye on the official documentation at https://facebook.github.io/react/docs/react-api.html.
Just like the DOM is a tree of nodes, React's virtual DOM is a tree of React nodes. One of the core types in React is called ReactNode
. It's a building block for a virtual DOM and it can be any one of these core types:
ReactElement
: This is the primary type in React. It's a light, stateless, immutable, virtual representation of aDOMElement
.ReactText
: This is a string or a number. It represents textual content ...
Get React 16 Essentials - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.