app.module.ts 902 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 { FormsModule } from '@angular/forms';

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

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