Angular

Standalone component

typescript
import { Component } from "@angular/core";

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