import { NgModule } 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 { SelectDoc2Component } from './select-doc-2.component'; import { CosmosModule } from '../../../../../../components/cosmos.module'; @NgModule({ declarations: [ SelectDoc2Component ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule, CosmosModule.forChild() ], exports: [SelectDoc2Component] }) export class SelectDoc2Module { }