import { ChangeDetectionStrategy, Component, Input, } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'product-details-and-features-content-component', styleUrls: [ './product-details-and-features-content.component.scss', ], templateUrl: './product-details-and-features-content.component.template.pug', }) export class ProductDetailsAndFeaturesContentComponent { @Input() public title: string = 'Details and Features'; @Input() public images: string[]; @Input() public features: string[]; public get showContent() { return Boolean(this.images || this.features); } }