Project

General

Profile

1
/**
2
 * Created by myrto on 11/27/17.
3
 */
4
import { Component, OnInit } from '@angular/core';
5

    
6
@Component ({
7
  selector: 'app-metrics',
8
  templateUrl: 'metrics.component.html'
9
})
10

    
11
export class MetricsComponent implements OnInit {
12

    
13
  constructor() {}
14

    
15
  ngOnInit() { }
16

    
17
}
(15-15/17)