import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { ReactiveFormsModule } from '@angular/forms'; import { TooltipModule } from 'ngx-bootstrap/tooltip'; import { BsDatepickerModule } from 'ngx-bootstrap/datepicker'; import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; import { NgxPrintModule } from 'ngx-print'; import { CommonModules } from './../common/common.module'; import { DataTablesModule } from 'angular-datatables'; import { CustomersRoutingModule } from './customers-routing.module'; import { ExistingCustomerComponent } from './existing-customers/existing-customers.component'; import { WalletCreditsComponent } from './wallet-credits/wallet-credits.component'; @NgModule({ declarations: [ExistingCustomerComponent, WalletCreditsComponent], imports: [ CommonModule, CommonModules, PerfectScrollbarModule, NgxPrintModule, FormsModule, DataTablesModule, ReactiveFormsModule, BsDatepickerModule.forRoot(), TooltipModule.forRoot(), CustomersRoutingModule ], entryComponents: [WalletCreditsComponent] }) export class CustomersModule { }