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
  parent_id: string;
13

    
14
  constructor() {}
15

    
16
  ngOnInit() { }
17

    
18
}
(10-10/12)