import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { BsDropdownModule } from 'ngx-bootstrap/dropdown'; import { NgxIntlTelInputModule } from 'ngx-intl-tel-input'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, HttpModule, NgxIntlTelInputModule, BsDropdownModule.forRoot() ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }