member_webapp/@overflow/sensor/sensor.module.ts
crusader b774fc3722 ing
2018-06-01 19:54:44 +09:00

30 lines
632 B
TypeScript

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