2019-10-02 17:12:51 +09:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
|
2019-10-04 13:45:02 +09:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
|
2019-10-07 13:49:12 +09:00
|
|
|
import { UCapUiChatModule } from '@ucap-webmessenger/ui-chat';
|
2019-10-02 17:12:51 +09:00
|
|
|
import { UCapUiGroupModule } from '@ucap-webmessenger/ui-group';
|
2019-10-07 13:49:12 +09:00
|
|
|
import { UcapUiProfileModule } from '@ucap-webmessenger/ui-profile';
|
2019-10-02 17:12:51 +09:00
|
|
|
|
|
|
|
import { AppTemplateRoutingPageModule } from './template-routing.page.module';
|
|
|
|
|
|
|
|
import { COMPONENTS, MET_MODULES } from './components';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
...MET_MODULES,
|
|
|
|
CommonModule,
|
|
|
|
FlexLayoutModule,
|
2019-10-04 13:45:02 +09:00
|
|
|
MatButtonModule,
|
2019-10-07 13:49:12 +09:00
|
|
|
UCapUiChatModule,
|
2019-10-02 17:12:51 +09:00
|
|
|
UCapUiGroupModule,
|
|
|
|
UcapUiProfileModule,
|
|
|
|
AppTemplateRoutingPageModule
|
|
|
|
],
|
|
|
|
declarations: [...COMPONENTS],
|
|
|
|
entryComponents: []
|
|
|
|
})
|
|
|
|
export class AppTemplatePageModule {}
|