Angular - Standalone Components
Given this code, what will be the output when
AppComponent is rendered?@Component({ selector: 'app-root', standalone: true, template: `Hello
`, imports: [ChildComponent] }) export class AppComponent {}
@Component({ selector: 'app-child', standalone: true, template: `Child works!
` }) export class ChildComponent {}