summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/ceph-shared.module.ts
blob: 9e9f2917a47499b21c39ac453f2c470c4f5aa960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap';
import { NgxPipeFunctionModule } from 'ngx-pipe-function';

import { DataTableModule } from '~/app/shared/datatable/datatable.module';
import { SharedModule } from '~/app/shared/shared.module';
import { DeviceListComponent } from './device-list/device-list.component';
import { SmartListComponent } from './smart-list/smart-list.component';

@NgModule({
  imports: [CommonModule, DataTableModule, SharedModule, NgbNavModule, NgxPipeFunctionModule],
  exports: [DeviceListComponent, SmartListComponent],
  declarations: [DeviceListComponent, SmartListComponent]
})
export class CephSharedModule {}