2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { HelpContentComponent } from '@app/ui/misc/help-content/help-content.component';
|
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
HelpContentComponent
|
|
|
|
],
|
|
|
|
exports: [HelpContentComponent]
|
|
|
|
})
|
|
|
|
export class HelpContentModule { }
|