Innqube/ngx-iq-datepicker

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 {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';

import {AppComponent} from './app.component';
import {IqDatepickerModule} from './component-wrapper/src/app/iq-datepicker.module';

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