Table of Contents

React - Root element

About

The root element is the root element of the React DOM tree.

It's the element passed to the rendering function ReactDOM.render where you will render your app or component.

Multiple Root

In a app, you have at minimal a root rendering. But you may have several roots in web pages.

In a website that uses:

See How to inject multi React components in a page? A Multiple Root demo