]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/ceph-shared.module.ts
9f523ca232b50c8ae635a2c4eef23f3c48827f6f
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / shared / ceph-shared.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { TabsModule } from 'ngx-bootstrap/tabs';
4 import { DataTableModule } from '../../shared/datatable/datatable.module';
5 import { SharedModule } from '../../shared/shared.module';
6 import { DeviceListComponent } from './device-list/device-list.component';
7 import { SmartListComponent } from './smart-list/smart-list.component';
8 @NgModule({
9 imports: [CommonModule, DataTableModule, SharedModule, TabsModule],
10 exports: [DeviceListComponent, SmartListComponent],
11 declarations: [DeviceListComponent, SmartListComponent]
12 })
13 export class CephSharedModule {}