diff --git a/src/app/app.module.ts b/src/app/app.module.ts index a61dbff..fd285a4 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,10 +1,13 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; - import { AppRoutingModule } from './app-routing.module'; +import { HttpClientModule } from '@angular/common/http'; +import { FormsModule, ReactiveFormsModule } from '@angular/forms'; +import { CarouselModule } from 'ngx-bootstrap/carousel'; +import { PaginationModule } from 'ngx-bootstrap/pagination'; + import { AppComponent } from './app.component'; import { AbmImagenesComponent } from './components/abm-imagenes/abm-imagenes.component'; -import { PaginationModule } from 'ngx-bootstrap/pagination'; import { HeaderComponent } from './components/header/header.component'; @NgModule({ @@ -16,7 +19,12 @@ import { HeaderComponent } from './components/header/header.component'; imports: [ BrowserModule, AppRoutingModule, - PaginationModule.forRoot() + HttpClientModule, + FormsModule, + ReactiveFormsModule, + ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }), + PaginationModule.forRoot(), + CarouselModule.forRoot() ], providers: [], bootstrap: [AppComponent]