overflow-webapp/src/app/pages/probe/probe-page.component.ts
2018-01-31 16:03:21 +09:00

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() { }
}