How to use a complex form component (with services, injections, etc) as a modal without having to put your html in the parent component?
My structure is as follows:
src
----- app.component.ts
----- app.component.html
----- modals/
------------- modal_one.ts
------------- modal_one.html
------------- modal_other.ts
------------- modal_other.html
How do I use < modal_one > without putting it in the html of app.component?