Composing Components
React components can make use of other React components. When a component contains another component it can be said that the parent component owns the child component (composition).
In the code below the ParentComponent component contains/owns the FirstChildComponent and SecondChildComponent component.