import { ChangeDetectionStrategy, Component } from '@angular/core'; // NOTE : this is just the dialog content, you need to implement dialog logic @Component({ standalone: true, template: ` `, changeDetection: ChangeDetectionStrategy.OnPush, }) export class AlertDialogComponent {}