Most React apps are single page applications with component tree. The size of component tree may increase as per the size of the application and its complications.
Here is a sample component tree of a React App
React JS App – Component Tree Example
In the above example, App is the root component or the parent of the tree. It has two child components Header and Tasks. The Tasks components renders as many Task components representing every tasks created in the task manager app.