79765217

Date: 2025-09-15 13:48:21
Score: 0.5
Natty:
Report link

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);
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hamid Taebi