React: What is a React element?
23 October 2022 (Updated 23 October 2022)
On this page
In a nutshell
In the host environment, a host instance (e.g., HTMLDivElement) is the smallest building block. In React, the smallest building block is a React element – a plain JavaScript object that describes a host instance.
Like host instances, React elements can form a tree:
React elements are immutable. You don’t change its properties or children. If you want to render something different, you replace it with a new React element.
React elements can be thought of like frames in a movie. They capture what the UI should look like at a specific point in time.
Sources
Tagged:
React
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment