summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.ts
blob: 4011770d4173ae7dd219aaeeac5bc190c302092c (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component } from '@angular/core';
import { Router } from '@angular/router';

@Component({
  selector: 'cd-prometheus-tabs',
  templateUrl: './prometheus-tabs.component.html',
  styleUrls: ['./prometheus-tabs.component.scss']
})
export class PrometheusTabsComponent {
  constructor(public router: Router) {}
}