17 lines
688 B
TypeScript
17 lines
688 B
TypeScript
import { Component, ChangeDetectionStrategy, inject } from '@angular/core';
|
|
import { LanguageService } from '../../../services/language.service';
|
|
import { DeliveryRuComponent } from './ru/delivery-ru.component';
|
|
import { DeliveryEnComponent } from './en/delivery-en.component';
|
|
import { DeliveryHyComponent } from './hy/delivery-hy.component';
|
|
|
|
@Component({
|
|
selector: 'app-delivery',
|
|
imports: [DeliveryRuComponent, DeliveryEnComponent, DeliveryHyComponent],
|
|
templateUrl: './delivery.component.html',
|
|
styleUrls: ['./delivery.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class DeliveryComponent {
|
|
lang = inject(LanguageService).currentLanguage;
|
|
}
|