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