| 12345678910111213141516 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-monitor-detail',
- templateUrl: './monitor-detail.component.html',
- styles: [
- ]
- })
- export class MonitorDetailComponent implements OnInit {
- constructor() { }
- ngOnInit(): void {
- }
- }
|