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

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

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