Angular - Standalone Components
Find the mistake in this standalone component bootstrapping:
import { bootstrapApplication } from '@angular/platform-browser';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `Hi
`,
standalone: false
})
export class AppComponent {}
bootstrapApplication(AppComponent);