import { NgModule,Component, OnInit, OnDestroy } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { TableDoc17Component } from './table-doc-17.component'; import { CosmosModule } from '../../../../../../components/cosmos.module'; @NgModule({ declarations: [ TableDoc17Component ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule, CosmosModule.forChild() ], exports: [TableDoc17Component] }) export class TableDoc17Module implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy(){ } }