I keep getting this error while using TypeScript\'s Angular2-forms framework:
There is no directive with \"exportAs\" set to \"ngForm
directive
Just import the correct module,
"FormsModule"
import { FormsModule } from "@angular/forms";
@NgModule({ imports: [ BrowserModule, FormsModule //<---. ], .... })