Files
angular-challenges/apps/angular/dialog-alert-form/src/app/pages/page.component.ts
2024-04-16 09:13:33 +02:00

15 lines
307 B
TypeScript

import { ChangeDetectionStrategy, Component, input } from '@angular/core';
@Component({
standalone: true,
template: `
<section>
<h1>{{ title() }}</h1>
</section>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class PageComponent {
title = input.required<string>();
}