First custom Dynamic Form Module generation
This commit is contained in:
27
src/app/modules/dyn-form/dyn-form.module.ts
Normal file
27
src/app/modules/dyn-form/dyn-form.module.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { DynFormComponent } from './dyn-form.component';
|
||||
import {CounterInputComponent} from './inputs/counter-input.component';
|
||||
import {KeysPipe, TagInputComponent} from './inputs/tag-input.component';
|
||||
import {DynQuestionComponent} from './dyn-question.component';
|
||||
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
ReactiveFormsModule
|
||||
],
|
||||
exports: [
|
||||
DynFormComponent
|
||||
],
|
||||
declarations: [
|
||||
DynFormComponent,
|
||||
DynQuestionComponent,
|
||||
CounterInputComponent,
|
||||
TagInputComponent,
|
||||
KeysPipe
|
||||
],
|
||||
providers: [],
|
||||
})
|
||||
export class DynFormModule { }
|
||||
Reference in New Issue
Block a user