Skip to content

Instantly share code, notes, and snippets.

@emolr
Last active February 23, 2017 16:46
Show Gist options
  • Save emolr/a88562b3369cb860e248526d63369fc4 to your computer and use it in GitHub Desktop.
Save emolr/a88562b3369cb860e248526d63369fc4 to your computer and use it in GitHub Desktop.
// app.module.ts
import {NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {FormsModule, ReactiveFormsModule} from '@angular/forms'
import {ArticleFormModule} from 'src/models/app-forms/article-form/article-form.module.ts'
import {AppComponent} from 'src/app.component.ts'
@NgModule({
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
ArticleFormModule
],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment