React: What is the entry point?
23 October 2022 (Updated 23 October 2022)
On this page
In a nutshell
Each React renderer has an entry point API that lets us tell React to render a particular React element tree inside a container host instance. For example, React DOM provides you with the ReactDOM.render
API:
This tells React to make the domContainer
host tree match your reactElement
tree.
So, something like:
results in:
If the React element has child elements in props.children, then React will recursively create host instances for them too on the initial render.
Sources
Tagged:
React
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment