Компонент TS
ngOnInit() {
if(somecondition)
// This is the line of code that wont work
this.openModal(#tempName);
}
Компонент HTML
<ng-template #tempName>
I got some content here
</ng-template>
this.openModal (#tempName) -> Как мне получить доступ к временному имени ngTemplate здесь?