You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
524 B
TypeScript
16 lines
524 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { CommonService } from 'src/app/hmg-common/services/common/common.service';
|
|
import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service';
|
|
|
|
@Component({
|
|
selector: 'app-item-details',
|
|
templateUrl: './item-details.component.html',
|
|
styleUrls: ['./item-details.component.scss'],
|
|
})
|
|
export class ItemDetailsComponent implements OnInit {
|
|
constructor(public ts: TranslatorService, public cs: CommonService,) { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|