cannot find name 'angular'.ts(2304) code example

Example: error TS2304: Cannot find name 'NgForm'.

/*
The answer of this context "error TS2304: Cannot find name 'NgForm'."

There are chances of arising this error in angular when we import 'NgForm' from '@angular/forms' in .component.ts file.

To resolve this error you may have added below code line in app.module.ts file
*/

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

@NgModule({
---------------
---------------
  imports: [     
        BrowserModule,
		FormsModule
  ]
---------------
---------------
}) 

/*
I hope that it will help you.
Namaste
*/