10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
|
|
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-company-details-en',
|
||
|
|
templateUrl: './company-details-en.component.html',
|
||
|
|
styleUrls: ['../company-details.component.scss'],
|
||
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||
|
|
})
|
||
|
|
export class CompanyDetailsEnComponent {}
|