Added Dropdown and Hidden Input
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import {NgModule} from '@angular/core';
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
import {CustomInputModule} from "./custom-input.module";
|
||||
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
||||
import { DynFormModule } from './modules/dyn-form/dyn-form.module';
|
||||
import {AppComponent} from './app.component';
|
||||
import {CustomInputModule} from './custom-input.module';
|
||||
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
||||
import {DynFormModule} from './modules/dyn-form/dyn-form.module';
|
||||
import {HelloService} from './services/hello.service';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -14,7 +15,11 @@ import { DynFormModule } from './modules/dyn-form/dyn-form.module';
|
||||
CustomInputModule,
|
||||
DynFormModule
|
||||
],
|
||||
declarations: [ AppComponent ],
|
||||
bootstrap: [ AppComponent ]
|
||||
declarations: [AppComponent],
|
||||
providers: [
|
||||
HelloService
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
export class AppModule {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user