Project

General

Profile

1 50159 myrto.kouk
/**
2
 * Created by myrto on 11/27/17.
3
 */
4 50144 myrto.kouk
import { Component, OnInit } from '@angular/core';
5 49961 myrto.kouk
6
@Component ({
7
  selector: 'app-metrics',
8
  templateUrl: 'metrics.component.html'
9
})
10
11
export class MetricsComponent implements OnInit {
12 50186 myrto.kouk
  parent_id: string;
13 49961 myrto.kouk
14 50170 myrto.kouk
  constructor() {}
15 50086 myrto.kouk
16 50349 myrto.kouk
  ngOnInit() { }
17 50086 myrto.kouk
18 49961 myrto.kouk
}