member_webapp/src/packages/sensor/sensor.module.ts

48 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-04-06 11:02:18 +00:00
// import { NgModule } from '@angular/core';
// import { CommonModule } from '@angular/common';
// import {FormsModule} from '@angular/forms';
// import { MaterialModule } from 'packages/commons/material/material.module';
// import { COMPONENTS } from './component';
// import { SERVICES } from './service';
// import { SensorStoreModule } from './sensor-store.module';
// import { SettingComponent } from './component/setting/setting.component';
// import { TreeModule } from 'angular-tree-component';
// import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
// import { MetaCrawlerModule } from '../meta/crawler/crawler.module';
// import { MetaCrawlerInputItemModule } from '../meta/crawler-input-item/crawler-input.module';
// import { MetaSensorDisplayItemModule } from '../meta/sensor-display-item/sensor-display-item.module';
// import { InfoTableModule } from '../commons/component/info-table/info-table.module';
// import { SensorItemModule } from '../sensor-item/sensor-item.module';
// @NgModule({
// imports: [
// CommonModule,
// MaterialModule,
// FormsModule,
// SensorStoreModule,
// TreeModule,
// InfoTableModule,
// PerfectScrollbarModule,
// MetaCrawlerModule,
// MetaCrawlerInputItemModule,
// MetaSensorDisplayItemModule,
// SensorItemModule
// ],
// declarations: [
// COMPONENTS,
// ],
// exports: [
// COMPONENTS,
// ],
// providers: [
// SERVICES,
// ],
// entryComponents: [
// SettingComponent
// ]
// })
// export class SensorModule { }