I am using angular 6 and trying to import a component as child component.
I have a component which can be accessed by routing to '/register' which loads signUpComponent and and I have other component which loads ServicesComponent using '/services' and also I am using both the routes in multiple components.
Now my problem is that I want to load ServicesComponent as child component of SigUpComponent i.e. something like this '/register/services' (kind of nested routing) with condition that my both routes are defined separately. Is there any way to do it, instead of redefining a third route as '/register/services' with ServicesComponent defined as child component of SigUpComponent