Created
September 23, 2017 01:10
-
-
Save israeljrs/ff6cf6ad41b37dc024fc9b67ae03a44a to your computer and use it in GitHub Desktop.
app.module.ts to ngx-bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { FormsModule } from '@angular/forms'; | |
import { ModalModule, PopoverModule, RatingModule } from 'ngx-bootstrap'; | |
import { AppComponent } from './app.component'; | |
@NgModule({ | |
declarations: [ | |
AppComponent | |
], | |
imports: [ | |
BrowserModule, | |
FormsModule, | |
ModalModule.forRoot(), | |
PopoverModule.forRoot(), | |
RatingModule.forRoot() | |
], | |
providers: [], | |
bootstrap: [AppComponent] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment