Angular Templates
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
@Component({
selector: 'app-profile',
standalone: true,
template: `
<h2>{{ fullName }}</h2>
<p>Member since {{ joinYear }}</p>
`
})
export class ProfileComponent {
fullName = 'Grace Hopper';
joinYear = 2021;
}
bootstrapApplication(ProfileComponent).catch(err => console.error(err));