member_webapp/@overflow/sensor-item/sensor-item.module.ts
crusader ea812f6e54 ing
2018-05-30 19:00:46 +09:00

27 lines
532 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { UIModule } from '@overflow/shared/ui/ui.module';
import { COMPONENTS } from './component';
import { SensorItemStoreModule } from './sensor-item-store.module';
import { SERVICES } from './service';
@NgModule({
imports: [
CommonModule,
UIModule,
SensorItemStoreModule,
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class SensorItemModule { }