How can i load compontent from variable? Etc. I have an array
let arr: Array<string> = new Array('<comp1></comp1>','<comp2></comp2>');
in my html temple walk array, and get compontent, but only i see string as ''
<ng-container *ngFor="let item of arr">{{item}}</ngcontainer>
thanks for answers.