2026-02-28 15:43:22 +04:00
|
|
|
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';
|
2026-01-18 18:57:06 +04:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-delivery',
|
2026-02-28 15:43:22 +04:00
|
|
|
imports: [DeliveryRuComponent, DeliveryEnComponent, DeliveryHyComponent],
|
2026-01-18 18:57:06 +04:00
|
|
|
templateUrl: './delivery.component.html',
|
2026-02-26 21:54:21 +04:00
|
|
|
styleUrls: ['./delivery.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2026-01-18 18:57:06 +04:00
|
|
|
})
|
|
|
|
|
export class DeliveryComponent {
|
2026-02-28 15:43:22 +04:00
|
|
|
lang = inject(LanguageService).currentLanguage;
|
2026-01-18 18:57:06 +04:00
|
|
|
}
|