Standalone component
import { Component } from "@angular/core";
@Component({
standalone: true,
selector: "app-hello",
template: `<h1>{{ title }}</h1>`,
})
export class HelloComponent {
title = "Hello";
}
import { Component } from "@angular/core";
@Component({
standalone: true,
selector: "app-hello",
template: `<h1>{{ title }}</h1>`,
})
export class HelloComponent {
title = "Hello";
}