Angular - Advanced Patterns
Consider the following Angular code snippet:
If
const compRef = viewContainerRef.createComponent(UserCardComponent); compRef.instance.userName = 'Alice'; compRef.changeDetectorRef.detectChanges();
If
UserCardComponent template contains <h1>{{ userName }}</h1>, what will be rendered in the DOM?