19 lines
399 B
TypeScript
19 lines
399 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'of-pages-probe',
|
|
templateUrl: './probe-page.component.html',
|
|
styleUrls: ['./probe-page.component.scss']
|
|
})
|
|
export class ProbePageComponent {
|
|
|
|
tabs2 = [
|
|
{ label: 'Info', path: '/probe/' },
|
|
{ label: 'Targets', path: '/target' },
|
|
{ label: 'History', path: '/probe/history' },
|
|
];
|
|
|
|
constructor() { }
|
|
|
|
}
|