Angular Components
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
@Component({
selector: 'app-greeting',
standalone: true,
template: `<h2>Hello, {{ name }}!</h2>`
})
export class GreetingComponent {
name = 'Angular developer';
}
bootstrapApplication(GreetingComponent).catch(err => console.error(err));