Angular - Standalone Components
Identify the issue in this Angular standalone component setup:
@Component({ selector: 'sample-comp', standalone: true, template: 'Sample works
' }) export class SampleComponent {} @Component({ selector: 'app-root', standalone: true, template: ' ' }) export class AppComponent {}