mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
20 lines
276 B
TypeScript
20 lines
276 B
TypeScript
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'google-maps',
|
||
|
|
pipes: [],
|
||
|
|
providers: [],
|
||
|
|
styles: [],
|
||
|
|
template: 'googleMaps'
|
||
|
|
})
|
||
|
|
export class GoogleMaps {
|
||
|
|
|
||
|
|
constructor() {
|
||
|
|
}
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
console.log('googleMaps');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|