app.module.ts 740 Bytes
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { HttpClientModule } from '@angular/common/http';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { AppBotonera } from './botonera/botonera.component';
import { ComprobantesComponent } from './comprobantes/comprobantes.component';

@NgModule({
  declarations: [
    AppComponent,
    AppBotonera,
    ComprobantesComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    NgbModule,
    HttpClientModule
  ],
  providers: [],
  bootstrap: [AppComponent, AppBotonera]
})
export class AppModule { }