Angular - Standalone Components
Identify the error in this Angular bootstrapping code:
import { bootstrapApplication } from '@angular/platform-browser';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `Welcome!
`
})
export class AppComponent {}
bootstrapApplication(AppComponent);