Innqube/ng2-iq-select2

View on GitHub
src/app/app.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';

import {AppComponent} from './app.component';
import {DataService} from './data.service';
import {IqSelect2Module} from '../../projects/ng2-iq-select2/src/lib/iq-select2.module';
import {ReactiveFormsModule} from '@angular/forms';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        IqSelect2Module,
        ReactiveFormsModule
    ],
    providers: [
        DataService
    ],
    bootstrap: [AppComponent]
})
export class AppModule {
}