CoderJony

Solution- Can't bind to 'ngModel' since it isn't a known property of 'input'.

Just add FormsModule in app.module.ts file of your Angular application.

import { FormsModule } from '@angular/forms';

[...]

@NgModule({
  imports: [
    [...]
    FormsModule
  ],
  [...]
})
Buy Me A Coffee