26 lines
688 B
TypeScript
26 lines
688 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
||
|
|
||
|
import { UCapUiGroupModule } from '@ucap-webmessenger/ui-group';
|
||
|
|
||
|
import { AppTemplateRoutingPageModule } from './template-routing.page.module';
|
||
|
|
||
|
import { COMPONENTS, MET_MODULES } from './components';
|
||
|
import { UcapUiProfileModule } from '@ucap-webmessenger/ui-profile';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
...MET_MODULES,
|
||
|
CommonModule,
|
||
|
FlexLayoutModule,
|
||
|
UCapUiGroupModule,
|
||
|
UcapUiProfileModule,
|
||
|
AppTemplateRoutingPageModule
|
||
|
],
|
||
|
declarations: [...COMPONENTS],
|
||
|
entryComponents: []
|
||
|
})
|
||
|
export class AppTemplatePageModule {}
|