Skip to content

Instantly share code, notes, and snippets.

@dubcdr
Last active November 13, 2018 02:37
Show Gist options
  • Save dubcdr/6c519b518aa54cde3fee61ee57d63689 to your computer and use it in GitHub Desktop.
Save dubcdr/6c519b518aa54cde3fee61ee57d63689 to your computer and use it in GitHub Desktop.
Reactive Forms - App Module
@NgModule({
declarations: [...],
imports: [
BrowserModule,
AppRoutingModule,
/*
** Important to Include FormsModule & ReactiveFormsModule
*/
FormsModule,
ReactiveFormsModule,
BrowserAnimationsModule,
MaterialModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment