From 99114f7f563e55c131dd5156489dfcf67b4ed928 Mon Sep 17 00:00:00 2001 From: mpuebla Date: Thu, 8 Aug 2019 11:05:20 -0300 Subject: [PATCH] Agregado modulos. --- src/app/app.module.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 60cf6f0..4174992 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -3,6 +3,7 @@ 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'; //#endregion //#region COMPONENTS @@ -28,7 +29,10 @@ import { BusquedaProductosComponent } from './components/busqueda-productos/busq imports: [ BrowserModule, AppRoutingModule, - HttpClientModule + HttpClientModule, + FormsModule, + ReactiveFormsModule, + ReactiveFormsModule.withConfig({ warnOnNgModelWithFormControl: 'never' }) ], providers: [], bootstrap: [AppComponent] -- 1.9.1