apps/daffio/src/app/newsletter/newsletter.component.ts
import {
ChangeDetectionStrategy,
Component,
} from '@angular/core';
@Component({
selector: 'daffio-newsletter',
templateUrl: './newsletter.component.html',
styleUrls: ['./newsletter.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DaffioNewsletterComponent {}