22 lines
392 B
TypeScript
Raw Normal View History

2018-04-10 21:37:09 +09: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() {
}
}