@ng-bootstrap/ng-bootstrap#NgbAlertModule TypeScript Examples
The following examples show how to use
@ng-bootstrap/ng-bootstrap#NgbAlertModule.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app.module.ts From 1hop with MIT License | 6 votes |
@NgModule({
declarations: [
AppComponent,
MigrationComponent,
BaseComponent,
NoContentComponent,
ImportComponent,
ManageComponent,
MigrateComponent
],
imports: [
BrowserAnimationsModule,
AppRoutingModule,
NgbAlertModule,
NgbDropdownModule,
FontAwesomeModule,
NgbDropdownModule,
FormsModule,
NgbModule,
HttpClientModule,
LoadingSpinnerModule,
ModalModule.forRoot(),
NgbToastModule,
ServiceWorkerModule.register('ngsw-worker.js', {
enabled: navigator.userAgent.toLowerCase().indexOf('android') === -1 &&
'serviceWorker' in navigator && environment.production
}),
FontAwesomeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Example #2
Source File: leverage.module.ts From 1x.ag with MIT License | 6 votes |
@NgModule({
declarations: [LeverageComponent, CreatePositionComponent, MyPositionsComponent, LeverageChartDialogComponent],
imports: [
CommonModule,
LeverageRoutingModule,
FormsModule,
ButtonsModule,
FontAwesomeModule,
TooltipModule.forRoot(),
OiUiModule,
ReactiveFormsModule,
LoadingSpinnerModule,
NgbAlertModule,
ChartsModule
],
entryComponents: [
LeverageChartDialogComponent
]
})
export class LeverageModule {
}