import { ChangeDetectionStrategy, Component } from '@angular/core'; import { WhatsappPipe } from '../whatsapp.pipe'; @Component({ selector: 'app-support-modal', templateUrl: './support-modal.component.html', styleUrls: ['./support-modal.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [WhatsappPipe], }) export class SupportModalComponent { email = 'soporte@ensomedia.com.mx'; numbers = ['55 2883 6989', '55 6332 8663']; }