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 { PopconfirmDocComponent } from './popconfirm-doc.component'; @NgModule({ declarations: [ PopconfirmDocComponent ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule ], exports: [PopconfirmDocComponent] }) export class PopconfirmDocModule { }