mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-21 08:46:10 +01:00
24 lines
674 B
TypeScript
24 lines
674 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { NbCardModule, NbIconModule, NbInputModule, NbTreeGridModule } from '@nebular/theme';
|
|
import { Ng2SmartTableModule } from 'ng2-smart-table';
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { TablesRoutingModule, routedComponents } from './tables-routing.module';
|
|
import { FsIconComponent } from './tree-grid/tree-grid.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
NbCardModule,
|
|
NbTreeGridModule,
|
|
NbIconModule,
|
|
NbInputModule,
|
|
ThemeModule,
|
|
TablesRoutingModule,
|
|
Ng2SmartTableModule,
|
|
],
|
|
declarations: [
|
|
...routedComponents,
|
|
FsIconComponent,
|
|
],
|
|
})
|
|
export class TablesModule { }
|