forked from philorg/treetrail-frontend
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-map-info',
|
|
templateUrl: './map-info.component.html',
|
|
styleUrls: ['./map-info.component.scss']
|
|
})
|
|
export class MapInfoComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|