Skip to content

Instantly share code, notes, and snippets.

@camilogiraldo
Last active February 28, 2019 01:08
Show Gist options
  • Save camilogiraldo/3fecfa7762120d73a32767ae36fbd7f7 to your computer and use it in GitHub Desktop.
Save camilogiraldo/3fecfa7762120d73a32767ae36fbd7f7 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule} from '@angular/forms';
import { AppComponent } from './app.component';
import { DynamicFormComponent } from './components/dynamic-form/dynamic-form.component';
@NgModule({
declarations: [
AppComponent,
DynamicFormComponent
],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment