27 lines
667 B
TypeScript
27 lines
667 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
|
||
|
import { UserGuideRoutingModule } from './user-guide.routing';
|
||
|
import { UserGuideContentComponent } from './user-guide-content/user-guide-content.component';
|
||
|
import { UserGuideDialogComponent } from './dialog/user-guide-dialog.component';
|
||
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
UserGuideContentComponent,
|
||
|
UserGuideDialogComponent
|
||
|
],
|
||
|
imports: [
|
||
|
CommonUiModule,
|
||
|
UserGuideRoutingModule
|
||
|
],
|
||
|
entryComponents: [
|
||
|
UserGuideContentComponent,
|
||
|
UserGuideDialogComponent
|
||
|
],
|
||
|
exports: [
|
||
|
UserGuideDialogComponent
|
||
|
]
|
||
|
})
|
||
|
export class UserGuideModule { }
|