2018-04-16 06:00:05 +00:00
|
|
|
import { Component, OnInit, Inject } from '@angular/core';
|
|
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-16 06:00:05 +00:00
|
|
|
@Component({
|
|
|
|
selector: 'of-sensor-detail',
|
|
|
|
templateUrl: './detail.component.html',
|
|
|
|
styleUrls: ['./detail.component.scss']
|
|
|
|
})
|
|
|
|
export class DetailComponent implements OnInit {
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-16 06:00:05 +00:00
|
|
|
constructor(
|
|
|
|
private route: ActivatedRoute,
|
|
|
|
private router: Router,
|
|
|
|
) { }
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-16 06:00:05 +00:00
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
}
|
2018-04-06 11:02:18 +00:00
|
|
|
|