import {Component, ViewEncapsulation, Input} from '@angular/core'; import {ApiService} from '../../../../pages/api.service'; import { AgmCoreModule } from 'angular2-google-maps/core'; @Component({ selector: 'simpleTable', encapsulation: ViewEncapsulation.None, styles: [require('./simpleTable.scss')], template: require('./simpleTable.html') }) export class SimpleTable { @Input() Options: Object[]; @Input() Title: String; @Input() TdName1: String; @Input() TdName2: String; @Input() TdName3: String; constructor() { } ngOnInit() { } };