Firstly, it is not related to Angular versions>2. Just import following in your app.module.ts file will fix the problems.
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
Then add FormsModule and ReactiveFormsModule in to your imports array.
imports: [
FormsModule,
ReactiveFormsModule
],
Note : You can also import ReactiveFormsModule
to specific module instead to app.module.ts