Last active
February 28, 2019 01:08
-
-
Save camilogiraldo/3fecfa7762120d73a32767ae36fbd7f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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