import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
  selector: 'custom-component',
  template: '<div>自定义组件</div>',
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class CustomComponentComponent {

}
