treetrail-frontend/src/app/map-info/map-info.component.ts

16 lines
283 B
TypeScript
Raw Normal View History

2024-10-19 11:53:15 +02:00
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 {
}
}