Angular - Standalone Components
Find the error in this standalone component code:
@Component({
selector: 'app-demo',
standalone: true,
template: `Demo works!
`,
imports: [CommonModule]
})
export class DemoComponent {}