|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-view-unit-details',
|
|
|
|
templateUrl: './view-unit-details.component.html',
|
|
|
|
styleUrls: ['./view-unit-details.component.scss']
|
|
|
|
})
|
|
|
|
export class ViewUnitDetailsComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedtab(e){
|
|
|
|
sessionStorage.setItem("tabsindex",e.index)
|
|
|
|
}
|
|
|
|
}
|