overflow-webapp/src/packages/member/member.module.ts

33 lines
713 B
TypeScript
Raw Normal View History

2018-01-29 20:58:12 +09:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-02-27 17:34:12 +09:00
import { RouterModule } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MaterialModule } from 'app/commons/ui/material/material.module';
import { MemberStoreModule } from './member-store.module';
2018-03-02 19:28:02 +09:00
import { COMPONENTS } from './component';
import { SERVICES } from './service';
2018-01-29 20:58:12 +09:00
@NgModule({
imports: [
CommonModule,
2018-02-27 17:34:12 +09:00
RouterModule,
FormsModule,
ReactiveFormsModule,
MaterialModule,
MemberStoreModule,
2018-01-29 20:58:12 +09:00
],
2018-03-02 19:28:02 +09:00
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
2018-01-29 20:58:12 +09:00
providers: [
2018-03-02 19:28:02 +09:00
SERVICES,
2018-02-27 17:34:12 +09:00
],
2018-01-29 20:58:12 +09:00
})
export class MemberModule { }