I would like to load a custom Component with the Template defined from a repository. This template html contains the tags of the components. Example:
<div data-id='main-container' class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="row">
<app-controls-list></app-controls-list>
</div>
<div class="row">
<app-controls-categories-list></app-controls-categories-list>
</div>
<div class="row">
<app-controls-edit></app-controls-edit>
</div>
</div>
The main goal is to insert the HTML into a component and then activate the creation of the components inside (appcontrols-categories-list, app-controls-edit, app-controls-list). It has to work with AOT (for SSR). Is it possible?