Angular - Standalone Components
Identify the error in this code snippet migrating from NgModules:
import { bootstrapApplication } from '@angular/platform-browser';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
standalone: true,
template: `Welcome
`
})
export class AppComponent {}
bootstrapApplication(AppComponent, {
providers: []
});