summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/fcaps/monitor-management-service/monitor-management-service.component.ts
blob: 39fd95e87a1114318988cb5cfb15fde0d88fdff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Component, HostBinding, OnInit } from '@angular/core';
import { slideToRight } from '../../../shared/utils/animates';

@Component({
  selector: 'app-monitor-management-service',
  templateUrl: './monitor-management-service.component.html',
  styleUrls: ['./monitor-management-service.component.less'],
  animations: [slideToRight]
})
export class MonitorManagementService implements OnInit {

  @HostBinding('@routerAnimate') routerAnimateState;

  constructor() { }

  ngOnInit() {
  }
}