member_webapp/@overflow/sensor-item/sensor-item.module.ts
crusader fd369d3519 ing
2018-06-01 19:27:27 +09:00

25 lines
437 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 { SERVICES } from './service';
@NgModule({
imports: [
CommonModule,
UIModule,
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class SensorItemModule { }