2019-01-18 18:03:45 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonUiModule } from '../../common/ui/common-ui.module';
|
|
|
|
import { CardComponent } from './card/card.component';
|
|
|
|
import { DashboardComponent } from './dashboard.component';
|
|
|
|
import { DashboardRoutingModule } from './dashboard.routing';
|
2019-04-25 16:04:54 +02:00
|
|
|
import { DraftsComponent } from './drafts/drafts.component';
|
|
|
|
import { InfoCounterComponent } from './info-counter/info-counter.component';
|
2019-03-01 16:15:25 +01:00
|
|
|
import { QuickWizardCreateAdd } from './quick-wizard-create-add/quick-wizard-create-add.component';
|
2019-03-05 17:25:38 +01:00
|
|
|
import { RecentActivityComponent } from './recent-activity/recent-activity.component';
|
2019-04-24 11:26:53 +02:00
|
|
|
import { RecentEditedActivityComponent } from './recent-edited-activity/recent-edited-activity.component';
|
2019-04-25 16:04:54 +02:00
|
|
|
import { RecentVisitedActivityComponent } from './recent-visited-activity/recent-visited-activity.component';
|
|
|
|
import { WizardComponent } from './wizard/wizard.component';
|
2019-04-24 11:26:53 +02:00
|
|
|
|
2019-01-18 18:03:45 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
DashboardRoutingModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
DashboardComponent,
|
|
|
|
RecentActivityComponent,
|
2019-03-01 16:15:25 +01:00
|
|
|
CardComponent,
|
2019-04-24 11:26:53 +02:00
|
|
|
QuickWizardCreateAdd,
|
|
|
|
WizardComponent,
|
|
|
|
InfoCounterComponent,
|
|
|
|
RecentVisitedActivityComponent,
|
|
|
|
RecentEditedActivityComponent,
|
|
|
|
DraftsComponent
|
2019-03-01 16:15:25 +01:00
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
QuickWizardCreateAdd
|
2019-01-18 18:03:45 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class DashboardModule { }
|