member_webapp/@overflow/sensor/sensor.module.ts
crusader 27b3490d39 ing
2018-06-05 20:29:35 +09:00

32 lines
709 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 { MetaModule } from '@overflow/meta/meta.module';
import { COMPONENTS } from './component';
import { SERVICES } from './service';
import { SensorItemModule } from '../sensor-item/sensor-item.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
UIModule,
MetaModule,
SensorItemModule,
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
]
})
export class SensorModule { }