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