import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ selector: 'uxd-text-page-layout', templateUrl: './text-page-layout.component.html', styleUrls: ['./text-page-layout.component.less'], changeDetection: ChangeDetectionStrategy.OnPush, }) export class TextPageLayoutComponent {}