Blame view

src/app/component/graph/graph.component.ts 272 Bytes
c666d6db6   lsagona   add map graph and...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import { Component, OnInit } from '@angular/core';
  
  @Component({
    selector: 'app-graph',
    templateUrl: './graph.component.html',
    styleUrls: ['./graph.component.scss']
  })
  export class GraphComponent implements OnInit {
  
    constructor() { }
  
    ngOnInit(): void {
    }
  
  }