You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
18 lines
405 B
3 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { CustomReuseStrategy } from 'src/app/CustomReuseStrategy';
|
||
|
@Component({
|
||
|
selector: 'app-unit-details',
|
||
|
templateUrl: './unit-details.component.html',
|
||
|
styleUrls: ['./unit-details.component.scss']
|
||
|
})
|
||
|
export class UnitDetailsComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
back() {
|
||
|
window.history.back()
|
||
|
}
|
||
|
}
|