member_webapp/@overflow/sensor-item/sensor-item.module.ts

27 lines
532 B
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-05-30 10:00:46 +00:00
import { UIModule } from '@overflow/shared/ui/ui.module';
import { COMPONENTS } from './component';
import { SensorItemStoreModule } from './sensor-item-store.module';
import { SERVICES } from './service';
2018-04-06 11:02:18 +00:00
@NgModule({
imports: [
CommonModule,
2018-05-30 10:00:46 +00:00
UIModule,
SensorItemStoreModule,
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class SensorItemModule { }