Skip to content

Instantly share code, notes, and snippets.

@isummation
Last active September 14, 2017 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isummation/33019f039b06c3f5de8a8b164495c195 to your computer and use it in GitHub Desktop.
Save isummation/33019f039b06c3f5de8a8b164495c195 to your computer and use it in GitHub Desktop.
// app.module.ts
import { DynamicFormModule } from './dynamic-form';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
DynamicFormModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment