I am converting a purchased, third-party template into an Angular 5 app, and just ran into an error. I am very new to Angular 5 (I know AngularJS well however) and don\'t un
Edit the file "app.module.ts"; change the following instruction:
import { ReactiveFormsModule } from '@angular/forms';
with the following:
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
Change the following piece of code:
imports: [
BrowserModule,
ReactiveFormsModule
],
with the following:
imports: [
BrowserModule,
ReactiveFormsModule,
FormsModule
],