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