10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
|
|
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-public-offer-hy',
|
||
|
|
templateUrl: './public-offer-hy.component.html',
|
||
|
|
styleUrls: ['../public-offer.component.scss'],
|
||
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||
|
|
})
|
||
|
|
export class PublicOfferHyComponent {}
|