To nest one component inside another, we use the same JSX syntax we used previously. 

Try it out creating the Greet component from within the Page component.

Great stuff! We're able to create complex user interfaces by nesting components inside each other.

To create a component, we use the JSX syntax and capitalize the fist letter of the component. Here we need <Greet />.