Blame view

src/app/map/map.component.ts 264 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-map',
    templateUrl: './map.component.html',
    styleUrls: ['./map.component.scss']
  })
  export class MapComponent implements OnInit {
  
    constructor() { }
  
    ngOnInit(): void {
    }
  
  }