for angular 17 and higher:
<div>
<ng-container #wrapper></ng-container>
</div>
and in ts file:
import {ViewContainerRef, viewChildren} from '@angular/core';
public wrapper= viewChildren('wrapper', { read: ViewContainerRef });
ngAfterViewInit() {
this.wrapper.createComponent(SomeComponent);
}