mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-19 07:46:09 +01:00
16 lines
262 B
TypeScript
16 lines
262 B
TypeScript
|
|
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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|