import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { TableComponent } from './table.component'; import { LoadingModule } from '../../common/loading/loading.module'; import { PagingModule } from '../paging/paging.module'; import { ObjectKeysModule } from '../../../pipes/object-keys/object-keys.module'; @NgModule({ declarations: [ TableComponent ], imports: [ CommonModule, LoadingModule, PagingModule, ObjectKeysModule ], exports: [ TableComponent ] }) export class TableModule { }