member_webapp/src/packages/infra/component/map/map.component.ts

22 lines
392 B
TypeScript
Raw Normal View History

2018-04-10 12:37:09 +00:00
import { Component, OnInit, AfterViewInit, AfterContentInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'of-infra-map',
templateUrl: './map.component.html',
})
export class MapComponent implements OnInit, AfterContentInit {
constructor(
private router: Router,
) {
}
ngAfterContentInit() {
}
ngOnInit() {
}
}