Angular Templates
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
@Component({
selector: 'app-clock',
standalone: true,
template: `
<p>The time is {{ currentTime }}</p>
`
})
export class ClockComponent {
currentTime = new Date().toLocaleTimeString();
}
bootstrapApplication(ClockComponent).catch(err => console.error(err));