Angular - Standalone Components
What is wrong with this standalone component code?
@Component({ selector: 'app-error', standalone: true, template: `Error component
` }) export class ErrorComponent {}
@Component({ selector: 'app-root', standalone: true, template: ` `, imports: [ErrorComponent] }) export class AppComponent {}