ngx-admin/src/app/pages/maps/maps.component.ts

16 lines
262 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-maps',
templateUrl: './maps.component.html',
styleUrls: ['./maps.component.scss']
})
export class MapsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}