I have created an Angular app using Angular CLI and created one component:
ng g c parent.
How do I create child components (e.g. child1 and child2) and integrate them with a parent using angular CLI?
I am trying to create a simple example and understand in some example parent-child component relationship.