Last active
February 23, 2017 16:46
-
-
Save emolr/a88562b3369cb860e248526d63369fc4 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
// 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