2019-10-24 06:37:33 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar';
|
|
|
|
|
|
|
|
import { UCapUiModule } from '@ucap-webmessenger/ui';
|
|
|
|
|
|
|
|
import { COMPONENTS } from './components';
|
2019-12-17 02:44:59 +00:00
|
|
|
import { MatTooltipModule, MatBadgeModule } from '@angular/material';
|
2019-10-24 06:37:33 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
FlexLayoutModule,
|
|
|
|
MatIconModule,
|
|
|
|
MatToolbarModule,
|
2019-12-03 05:31:49 +00:00
|
|
|
MatTooltipModule,
|
2019-12-17 02:44:59 +00:00
|
|
|
MatBadgeModule,
|
2019-12-03 05:31:49 +00:00
|
|
|
|
2019-10-24 06:37:33 +00:00
|
|
|
UCapUiModule
|
|
|
|
],
|
|
|
|
exports: [...COMPONENTS],
|
|
|
|
declarations: [...COMPONENTS],
|
|
|
|
entryComponents: []
|
|
|
|
})
|
|
|
|
export class AppNativeLayoutModule {}
|