import { ChangeDetectionStrategy, Component } from '@angular/core';
// NOTE : this is just the dialog content, you need to implement dialog logic
@Component({
standalone: true,
template: `
You have unsaved information!
Do you want to continue and lose them?
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AlertDialogComponent {}