Is there a way to dynamically create a html tag in components template?
Something like this
template:`<{{custom_tag}} [info]="info"></{{custom_tag}}>`
...
this.custom_tag="example";
this.info={};
Generated html will be something like this
<example info="..."></example>